Syntax
SOUNDEX(str)
Purpose
The SOUNDEX function converts a string into a code that represents its pronunciation. This function is commonly used for fuzzy queries or matching strings with similar pronunciations in a database.
Examples
obclient> SELECT SOUNDEX('a');
+--------------+
| SOUNDEX('a') |
+--------------+
| A000 |
+--------------+
1 row in set
