LOCATE
Returns the position of the first occurrence of a substring in a string
LOCATE(substr, str, [start_position])
str
The string in which the substring is searched for
start_position
Optional. Search start position
If no matches are found, 0 is returned.
Examples
SELECT LOCATE('world', 'Hello world')