在ms sql server中使用FREETEXTTABLE时,如何搜索主键?
我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
全文不适用于搜索单词的部分内容。 它用于搜索文本中的单词。
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.