【发布时间】:2012-01-27 14:17:13
【问题描述】:
我在 SQL Server 2008 中使用全文搜索。以下查询
select * From MyTable where contains( *, 'FLOW AND VALVE')
返回两行:
1. FLOW CONTROL VALVE
2. FLOW VALVE
但是下面的查询
select * From MyTable where contains( *, '"FLOW AND VALVE"'))
只返回一行:
1. FLOW CONTROL VALVE
为什么第二个查询不返回第二行?
【问题讨论】:
标签: sql-server full-text-search contains