Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 441 Bytes

File metadata and controls

31 lines (22 loc) · 441 Bytes
description
This section contains reference documentation for the STARTSWITH function.

startswith

returns true if columns starts with prefix string.

Signature

STARTSWITH(col, prefix)

Usage Examples

SELECT STARTSWITH('Apache Pinot', 'Apache') AS value
FROM ignoreMe
value
true
SELECT STARTSWITH('Apache Pinot', 'Pinot') AS value
FROM ignoreMe
value
false