Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用してMySql内で検索するための適切な構造は何soundex()ですか? 私は soundex() を生成する方法を知っています:
soundex()
select soundex('str');
これをクエリに含める方法がわかりません。
nameテーブルのフィールドに対して「lewis」を検索する場合は、次のpeopleクエリを実行します。
name
people
SELECT * FROM people WHERE soundex("lewis") = soundex(name);
例はこちら