STRPOS
Returns the starting position of the first instance of a given substring within a string.
Syntax
Arguments
STRING
STRING
Type: string
A sequence of characters to search.
SUBSTRING
SUBSTRING
Type: string
The substring to search for.
Returns
Type: bigint
Returns the starting position of the first instance of SUBSTRING
in STRING
.
Positions start from 1
. If no instance is found, 0
is returned.
Examples
Transformation job example
SQL
Query result
Last updated