Querying Multiple Columns (Full-Text Search)
SQL Server 2008
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');