Mega Code Archive

 
Categories / Oracle PLSQL / Char Functions
 

Soundex

SQL> -- Soundex: converts a string to a code value. SQL> SQL> --Words with similar sounds will have a similar code value, so you can use SOUNDEX to compare words --that are spelled slightly differently but sound basically the same. SQL> -- SOUNDEX(string) SQL> SELECT SOUNDEX('Time') FROM dual; SOUN ---- T500