Reference material for STRPOSR function
STRPOS(<string>, <substring>)
<string>
TEXT
<substring>
INTEGER
SELECT STRPOS('hello world','hello') AS res;
1
SELECT STRPOS('hello world','world') AS res;
7
SELECT STRPOS('hello world','work') AS res;
0