Parameter | Type |
---|---|
value | string |
prefix | string |
Returns: string
Example
query:
SELECT STARTSWITH("foobar", "foo")
results:
startswith |
---|
true |
The string function used to detect whether one string is a prefix of another.
Parameter | Type |
---|---|
value | string |
prefix | string |
query:
SELECT STARTSWITH("foobar", "foo")
results:
startswith |
---|
true |