LOCATE(substring, string, start)
-- example:
SELECT LOCATE('S', "I have a dog and she has a cat.", 5) AS Result;
-- result: 18 (index of the first char occurance)
-- note: LOCATE is case insensitive
LOCATE(substring, string, start)
-- example:
SELECT LOCATE('S', "I have a dog and she has a cat.", 5) AS Result;
-- result: 18 (index of the first char occurance)
-- note: LOCATE is case insensitive