SQL 自由文本等

发布于 2024-08-08 06:10:01 字数 163 浏览 6 评论 0原文

如果我使用像 '%fish%' 这样的内容,则返回

AQUARIAN GOLDFISH FLAKES

但如果我使用 Contains([Description],' "fish*" ' ) ,那么我可以做些什么吗?

基本上我想返回任何地方含有“鱼”一词的任何东西。

If I use like '%fish%' the following is returned

AQUARIAN GOLDFISH FLAKES

but if I use Contains([Description],' "fish*" ' ) it isn't is there something I can do?

Basically I want to return anything that has the word fish in it anywhere.

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

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

发布评论

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

评论(1

滥情空心 2024-08-15 06:10:01

怎么样

 CONTAINS([Description], '"fish"') 

或者

 FREETEXT([Description], 'fish') 

这会给你带来什么吗?

SQL Server 全文索引不支持搜索带有前导通配符的表达式,例如,您不能使用 CONTAINS([Description], '"*fish*"') 或类似的内容:-(

什么 同义词 - 您应该能够仅搜索“fish”并找到“goldfish”。

SELECT (list of fields) FROM YourTable
WHERE CONTAINS([Description], 'FORMSOF(THESAURUS, fish)')

您还可以为全文搜索定义自己的同义词,例如将“goldfish”定义为“fish”的 href="http://www.simple-talk.com/sql/learn-sql-server/understanding-full-text-indexing-in-sql-server/" rel="nofollow noreferrer">了解全文索引在 SQL Server 中 - 关于修改全文同义词库的文章中有一个很好的部分

What about

 CONTAINS([Description], '"fish"') 

or

 FREETEXT([Description], 'fish') 

Does that give you anything?

SQL Server Fulltext indexing does not support searching for an expression with a leading wildcard, e.g. you cannot go a CONTAINS([Description], '"*fish*"') or something like that :-(

What you could also do is define your own synonym for fulltext search, e.g. define "goldfish" to be a synonym for "fish" - than you should be able to search for just "fish" and also find "goldfish".

SELECT (list of fields) FROM YourTable
WHERE CONTAINS([Description], 'FORMSOF(THESAURUS, fish)')

Check out Understanding Full-Text Indexing in SQL Server - there's a good section a bit down in the article on modifying the fulltext thesaurus.

Marc

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