Parameter | Type |
---|---|
value | string |
partition | string |
Returns: boolean
Example
query:
SELECT STR_CONTAINS("LONDON", "N")
results:
str_contains |
---|
TRUE |
The string function for checking if a string contains a substring. Returns true if the string contains the substring, and false if it does not.
Parameter | Type |
---|---|
value | string |
partition | string |
query:
SELECT STR_CONTAINS("LONDON", "N")
results:
str_contains |
---|
TRUE |