SELECT SOUNDEX ('Smith'), SOUNDEX ('Smythe');
Here, the value returned by the SOUNDEX () function is "S530".
Please tell us how the input expression is processed in the SOUNDEX () function. In this example, the first character is "S" because its first character is in the input expression, but how are the remaining three digits calculated?
source share