In Oracle/PLSQL, the soundex function returns a phonetic representation (the way it sounds) of a string.
Syntax
The syntax for the soundex function is:
soundex( string1 )
string1 is the string whose phonetic value will be returned.
Note
The Soundex algorithm is as follows:
Applies To
For Example
| soundex('tech on the net'); | would return 'T253' |
| soundex('TECH ON THE NET'); | would return 'T253' |
| soundex('apples'); | would return 'A142' |
| soundex('apples are great'); | would return 'A142' |
| soundex('applus'); | would return 'A142' |