Boolean Operators
STARTS_WITH
<expression> STARTS WITH <value>
Description
Evaluates to True if the value returned by <expression>
has <value>
as a substring at the start. <expression>
can be <table>.<column>
orAGG(<table>.<column>, <start>, <end>)
.
This operator can only be applied to text
columns.