Mysql
 sql >> Database >  >> RDS >> Mysql

Come interrogare soundex() in mysql

Se stai cercando "lewis" contro il name campo di people tabella, esegui questa query:

SELECT *
FROM people
WHERE soundex("lewis") = soundex(name);

esempio qui