SOUNDS LIKE
Compare strings by sound. This operator tests if two strings have the same Soundex value, useful for fuzzy matching.
Last updated
Was this helpful?
Compare strings by sound. This operator tests if two strings have the same Soundex value, useful for fuzzy matching.
expr1 SOUNDS LIKE expr2This is the same as SOUNDEX(expr1) = SOUNDEX(expr2).
SELECT givenname, surname FROM users WHERE givenname SOUNDS LIKE "robert";
+-----------+---------+
| givenname | surname |
+-----------+---------+
| Roberto | Castro |
+-----------+---------+This page is licensed: GPLv2, originally from fill_help_tables.sql
Last updated
Was this helpful?
Was this helpful?

