有没有简单的方法将数据库表字段中的单词与 soundex 进行匹配?

发布于 2024-10-11 07:00:11 字数 123 浏览 0 评论 0原文

您好,在深入了解 soundex 之前,想快速询问一下。

1 - 表 [标题] 中的字段包含“包含我正在查找的 WORD 的句子”

问 - 是否有简单的方法可以使用 sundex 来匹配 WORD?

Hi Just Before going deep into soundex, wanted to ask quick qiestion.

1 - field in the table[title] contains a "Sentence that has WORD I am looking for"

Q - Is there are easy way to match the WORD using a sundex ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

◇流星雨 2024-10-18 07:00:11

SOUNDEX 是搜索 Smith 时匹配 SmithSmytheSmeathe 的方法:

SELECT  *
FROM    names
WHERE   name_soundex = SOUNDEX('Smith')

name     name_soundex
--
Smith    S530
Smythe   S530
Smeathe  S530

您需要的是 FULLTEXT 索引:

CREATE FULLTEXT INDEX fx_mytable_title ON mytable (title)

SELECT  *
FROM    mytable
WHERE   MATCH(title) AGAINST ('+fox')

title
--
A quick brown fox jumped over the lazy dog

SOUNDEX is a way to match Smith, Smythe and Smeathe while searching for Smith:

SELECT  *
FROM    names
WHERE   name_soundex = SOUNDEX('Smith')

name     name_soundex
--
Smith    S530
Smythe   S530
Smeathe  S530

What you need is called FULLTEXT indexing:

CREATE FULLTEXT INDEX fx_mytable_title ON mytable (title)

SELECT  *
FROM    mytable
WHERE   MATCH(title) AGAINST ('+fox')

title
--
A quick brown fox jumped over the lazy dog
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文