C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL SOUNDEX() FunctionThe Soundex() is a String function of MySQL. This method returns a Soundex string. Two strings which sound almost same should have identical soundex strings. Syntax
select soundex(str); Example 1
Select soundex('TheDeveloperBlog');
Output:
Example 2
Select soundex('mysql');
Output:
Next TopicMySQL String
|