Question : Freetext contains search

Hi, I am looking to search a couple of columns in a table tables for a string in an input field.
So if someonetypes into the field "Brand Bag" I would like to search a couple of fields where both these words are contained, but not neccesarlay together.
The current syntax I have is
SELECT     Field1, Field2, Field3, Field4
FROM         dbo.GlobalFeed
WHERE     CONTAINS((Field1, Field3), 'Brand')
This works just for the one word.
Having two words and using variations of 'Brand and bag', "'Brand and bag'", 'Brand' and 'bag' produces syntax errors.
So I am looking for the correct sytax and how I ca place that into one variable such as @search string for the SQL to use.

Answer : Freetext contains search

this should work;
look at this link. There are more word you could use with CONTAINS
http://msdn.microsoft.com/en-us/library/ms187787.aspx
1:
2:
3:
4:
SELECT Field1, Field2, Field3, Field4 
FROM dbo.GlobalFeed 
WHERE CONTAINS((Field1, Field3), ' "Brand" OR "Bag" ')
--WHERE CONTAINS((Field1, Field3), ' "Brand" AND "Bag" ')
Random Solutions  
 
programming4us programming4us