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. Syntaxselect soundex(str); Example 1Select soundex('TheDeveloperBlog'); Output: Example 2Select soundex('mysql'); Output:
Next TopicMySQL String
|