Sql server 全文索引通配符搜索
我在 sql server 中使用全文索引时遇到问题
是否可以使用全文索引搜索以特定单词开头的列?
I am having a trouble using full text indexing in sql server
Is it possible to search columns which starts with a specific word using full text indexing ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法通过全文搜索来锚定您的搜索。如果您想在这样的列前面找到特定值,最好的办法是使用
LIKE
(这是一个糟糕的建议)。You can't anchor your searches like this with full text searches. The best you could do would be to use a
LIKE
(which is awful advice) if you want to find specific values at the front of a column like this.