-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0ca9bd
commit 330fa60
Showing
5 changed files
with
113 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
### General functions | ||
|
||
| Name | Parameters | Return | Description | | ||
| --------- | ---------------- | ------- | ------------------------------------------------------------------------------ | | ||
| ISNULL | ANY | Boolean | Return TRUE if the argument type is null. | | ||
| ISNUMERIC | ANY | Boolean | Return TRUE if the argument type is number. | | ||
| TYPEOF | ANY | Text | Return the argument type name. | | ||
| GREATEST | ANY, Any, ...Any | Any | Return the greatest value from list of values | | ||
| LEAST | ANY, Any, ...Any | Any | Return the smallest value from list of values | | ||
| UUID | | Text | Return a Universal Unique Identifier | | ||
| IF | Boolean, T, T | T | Return second argument if the condition is TRUE otherwise return last argument | | ||
| IFNULL | T, T | T | Return second argument if first one is null, otherwise return first one | | ||
|
||
| Name | Parameters | Return | Description | | ||
| --------- | ------------------- | ------- | ------------------------------------------------------------------------------ | | ||
| ISNULL | ANY | Boolean | Return TRUE if the argument type is null. | | ||
| ISNUMERIC | ANY | Boolean | Return TRUE if the argument type is number. | | ||
| TYPEOF | ANY | Text | Return the argument type name. | | ||
| GREATEST | ANY, Any, ...Any | Any | Return the greatest value from list of values | | ||
| LEAST | ANY, Any, ...Any | Any | Return the smallest value from list of values | | ||
| UUID | | Text | Return a Universal Unique Identifier | | ||
| IF | Boolean, T, T | T | Return second argument if the condition is TRUE otherwise return last argument | | ||
| IFNULL | T, T | T | Return second argument if first one is null, otherwise return first one | | ||
| BENCHMARK | Integer, Expression | Int(0) | Execute the expression n times and return 0 | |