STARTSWITH
Syntax
<startswith-expression> := 'STARTSWITH(' <String>, <String> ')'
Since
2.1
Return-type
Boolean
Description
This function determines if the first argument starts with the string passed as second argument. If any of the argument is NULL, the function returns NULL.
Examples
STARTSWITH( 'Hello World', 'World' )
= FALSE
STARTSWITH( 'Hello World', 'Hello' )
= TRUE
STARTSWITH( 'Hello World', 'NULL' )
= NULL
See also
ENDSWITH
