Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Character String Functions
 

Soundex converts a string to a code value

Words with similar sounds will have a similar code value. The general format for this function is: SOUNDEX(string) SQL> SQL> SELECT SOUNDEX('Time') FROM dual; SOUN ---- T500 SQL>