我正在索引的SQL Server2008 R2数据库上执行以下SQL语句。SELECT * FROM mydatabase WHERE (CONTAINS(ColumnA,'"The Apple is red"'))
问题是它返回了太多的条目。它还返回'ColumnA‘只包含一个单词的条目('Apple’、'is‘或'red'.
我写了两个SQL语句。ON customers.CustomerID = WHERE orders.OrderID IS NULL;orders.CustomerID AND orders.EmployeeID=4 AND orders.OrderID IS NULL;
第一个返回16个条目,这是正确的(根据解决方案)。第二个<