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