This function is used to return the soundex string from str, for example, soundex('Miller') = M460.
soundex(string <str>)
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
str |
Yes |
STRING |
String to be converted |
The return value is of the STRING type.
If the value of str is NULL, NULL is returned.
The value M460 is returned.
SELECT soundex('Miller');