In Oracle, the SOUNDEX()
function returns a character string containing the phonetic representation of its argument. This is known as the Soundex string.
Soundex is a phonetic algorithm for indexing names by sound, as pronounced in English. If two words sound the same, they should have the same Soundex string. If two words sound similar, but not exactly the same, their Soundex string might look similar but not exactly the same.
The function accepts one argument: the string for which to return the Soundex string from.
Continue reading