Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: PHONETIC QUERY? HOW??
Do you the SOUNDEX function ?
Syntax: SOUNDEX(char)
Purpose:
Returns a character string containing the phonetic representation of char. This function allows you to compare words that are spelled differently, but sound alike in English.
The phonetic representation is defined in The Art of Computer Programming, Volume 3: Sorting and Searching, by Donald E. Knuth, as follows:
Example
SELECT ename
FROM emp
WHERE SOUNDEX(ename)
![]() |
![]() |