This section contains reference documentation for the STARTSWITH function.
Last updated 1 year ago
returns true if columns starts with prefix string.
STARTSWITH(col, prefix)
SELECT STARTSWITH('Apache Pinot', 'Apache') AS value FROM ignoreMe
SELECT STARTSWITH('Apache Pinot', 'Pinot') AS value FROM ignoreMe
true
false