SOUNDS LIKE
Compare strings by sound. This operator tests if two strings have the same Soundex value, useful for fuzzy matching.
Syntax
expr1 SOUNDS LIKE expr2Description
Example
SELECT givenname, surname FROM users WHERE givenname SOUNDS LIKE "robert";
+-----------+---------+
| givenname | surname |
+-----------+---------+
| Roberto | Castro |
+-----------+---------+Last updated
Was this helpful?

