Token Functions in WHERE Clause
The token functions in this section can only be used in the WHERE
clause of a LOAD
statement.
Function name | Output type | Description of function |
---|---|---|
|
Converts main_string to an integer value. |
|
|
Converts main_string to a float value. |
|
|
Returns a string which is the concatenation of string1 and string2 . |
|
INT |
Returns the length of main_string. |
|
|
Returns true if main_string is empty after removing white space. Returns false otherwise. |
|
|
Returns true if string1 is exactly the same (case-sensitive) as string2 . Returns false otherwise. |
|
|
Returns true if string1 is exactly the same (case-insensitive) as string2. Returns false otherwise. |
|
|
Returns true if main_string is either "t" or "true" (case-insensitive). Returns false otherwise. |
|
|
Returns true if main_string is either "f" or "false" (case-insensitive). Returns false otherwise. |