SQL Server 与 MySQL:CONTAINS(*,'FORMSOF(THESAURUS,word)')

发布于 2024-10-12 18:45:51 字数 227 浏览 8 评论 0原文

我很震惊。

我花了 3-4 天的时间弄清楚如何在 mysql 中实现词干提取(和同义词搜索),当我在 SQL Server 中看到查询非常简单时:

Select * from tab where CONTAINS(*,'FORMSOF(THESAURUS,word)')

Is possibile on MySql does not like that?

I am shocked.

I spent past 3-4 days figuring out how I could implement stemming (and synonyms searches) in mysql when I see in SQL Server the query is incredibly easly:

Select * from tab where CONTAINS(*,'FORMSOF(THESAURUS,word)')

Is possibile on MySql there isn't anything like that?

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

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

发布评论

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

评论(1

橙味迷妹 2024-10-19 18:45:51

不,MySQL 不支持与用户提供的同义词库进行匹配。

您可以使用外部 FULLTEXT 引擎,例如 Sphinx,它支持 形态规则,内置多个词干分析器和同义词库,并允许可插入。

No, MySQL does not support matching against a user-provided thesaurus.

You can use an external FULLTEXT engine like Sphinx which supports morphology rules, has several stemmers and thesauri built in and allows pluggable ones.

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