This topic has not yet been rated - Rate this topic

Querying Multiple Columns (Full-Text Search)

You can use the CONTAINS predicate to query multiple columns by specifying a list of columns to search. The columns must be from the same table.

The following query searches for the term Red in the Name and Color fields of the Production.Product table.

Use AdventureWorks;
GO
SELECT Name, Color FROM Production.Product
WHERE CONTAINS((Name, Color), 'Red');


Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.