使用SOUNDEX()在MySQL中进行搜索的合适结构是什么?

基本上,SOUNDEX()函数用于返回Soundex,这是一种语音算法,用于在声音的英语发音(一个字符串,一个字符串)后索引名称。在MySQL中使用进行搜索的正确结构SOUNDEX()如下-

SOUNDEX(Str)

在这里,Str是要检索其SOUNDEX字符串的字符串。

示例

mysql> Select SOUNDEX('MySQL');
+------------------+
| SOUNDEX('MySQL') |
+------------------+
| M240             |
+------------------+
1 row in set (0.00 sec)

mysql> Select SOUNDEX('harshit');
+--------------------+
| SOUNDEX('harshit') |
+--------------------+
| H623               |
+--------------------+
1 row in set (0.00 sec)

mysql> Select SOUNDEX('hrst');
+-----------------+
| SOUNDEX('hrst') |
+-----------------+
| H623            |
+-----------------+
1 row in set (0.00 sec)

SOUNDEX('harshit')和SOUNDEX('hrst')的结果相同,因为两个单词的声音相同。

猜你喜欢