LOCATE
Searches for the first occurrence of the first argument in the second argument and if found, returns the position the of the first argument in the second argument. The first character in a string is position 1. Returns 0 if the substring isnβt found in the expression.
Syntax
LOCATE(substring varchar, expression varchar, start int32) β int32
substring: Substring to search for in the expression.
expression: The input expression to search.
start: Position to start the search from.
Examples
LOCATE example
LOCATE example
LOCATE(substring varchar, expression varchar) β int32
substring: Substring to search for in the expression.
expression: The input expression to search.
Examples
LOCATE example
Last updated