在ms sql server中使用FREETEXTTABLE时,如何搜索主键?

发布于 2024-07-23 01:26:25 字数 213 浏览 4 评论 0原文

我有一个使用 FREETEXTTABLE 全文搜索的查询,该搜索对于索引中包含的每一列(主键除外)都非常有效。

主键的格式类似于 abcdef123456,当您搜索 abcdef123456 时,您会返回一条记录。 但是,如果您搜索 abcd 或 12345,您不会得到任何结果(除非该短语出现在索引的另一列中。)

有谁知道这是设计上的错误,还是只是我没有遇到的其他问题?

I have a query using a FREETEXTTABLE full text search which works perfectly for every column included in the index except for the primary key.

The primary keys are in a format like abcdef123456 and when you search for abcdef123456 you get that one record returned. However, if you search for abcd or 12345 you get no results (unless that phrase appears in another column in the index.)

Does anyone know if this is a bug, by design, or just some other problem I haven't encounted?

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

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

发布评论

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

评论(1

只有一腔孤勇 2024-07-30 01:26:25

全文不适用于搜索单词的部分内容。 它用于搜索文本中的单词。
CHARINDEX 您可能想在您的情况下使用。

Fulltext is not for searching parts of words. It's for searching words in texts.
CHARINDEX you might want to use in your case.

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