Question : ContainsTable Multiple Column search?

I read on MS that when using containstable you can specify a column or a column list, anyone know the syntax for the column list use?

I am currently butchering it like this:
SELECT * FROM Product AS P  INNER JOIN CONTAINSTABLE(Product, { ProductName | LongDescription },@parsedoutput)
        AS KEY_TBL
     ON p.ProductID = KEY_TBL.[KEY] ORDER BY RANK DESC

I know this is wrong and I have tried many different variations with no luck.

The 2 columns I need to search are ProductName and LongDescription.

Answer : ContainsTable Multiple Column search?

Try this:
1:
2:
3:
SELECT * FROM Product AS P INNER JOIN CONTAINSTABLE(Product,
(ProductName, LongDescription),@parsedoutput) AS KEY_TBL
     ON p.ProductID = KEY_TBL.[KEY] ORDER BY RANK DESC
Random Solutions  
 
programming4us programming4us