SOUNDEX

olivier vidal_olivier at yahoo.fr
Tue Jul 27 08:20:39 CDT 2004


>
> What syntax Is used in SQL Server ?
>
SQL Server :

The function SOUNDEX () return the basic code of Soundex.

eg
To search persons whose name has the same consonance as a typed name we 
can, for example, use the following code SQL:

Select * from T_PERSONNE 
Where SOUNDEX(:The Name) = SOUNDEX(T_PERSONNE.NOM_PERS)


olivier


More information about the Valentina mailing list