我数据库里有一张表,news
对它,我已经创建了全文索引,字段是:content,
但是查询的时候:select * from news where CONTAINS( [content],'中国')
却没查出来数据?
请大神指点。。。
------解决方案--------------------
try this,
select *
from news
where CONTAINS( [content],'"中国*"')
------解决方案--------------------
会不会是干扰词问题导致的呢
可以看看这个:
运用SQL Server的全文检索来提高模糊匹配的效率
http://blog.csdn.net/sqlserverdiscovery/article/details/11091851