Syntax
SOUNDEX(str)
Purpose
SOUNDEX() converts an input string into a four-character code, which is usually used to evaluate the similarity between two strings in pronunciation.
Examples
obclient> SELECT SOUNDEX('a');
+--------------+
| SOUNDEX('a') |
+--------------+
| A000 |
+--------------+
1 row in set