Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Phonetic Check functionality coded in SQL
use the SOUNDEX function in SQL*Plus
i.e. SELECT 1 FROM DUAL
WHERE SOUNDEX('SMITH') = SOUNDEX('SMYTHE');
will return a record.
--
Alan D. Mills
R Smits wrote in message <363f009f.16778466_at_200.100.100.1>...
>Does anyone has suggestions on how to code a 'phonetic check' in SQL?
>'Phonetic check' functionallity produces a list of names (length of
>list given) that resemble a given name.
>
>Rob Smits
Received on Tue Nov 03 1998 - 09:07:33 CST
![]() |
![]() |