SOUNDEX
Return the Soundex string. This function calculates the Soundex key for a string, allowing comparison of words that sound similar.
Syntax
SOUNDEX(str)Description
Examples
SOUNDEX('Hello');
+------------------+
| SOUNDEX('Hello') |
+------------------+
| H400 |
+------------------+SELECT SOUNDEX('MariaDB');
+--------------------+
| SOUNDEX('MariaDB') |
+--------------------+
| M631 |
+--------------------+See Also
Last updated
Was this helpful?

