I created a full text search with a catalog and index and the contains query works fine when I run a query with one word like below.
SELECT Name
FROM dbo.Gifts
WHERE CONTAINS(Name, 'gift')
it returns 'test gift'
I have only one row in the table and the data in the Name column looks like this: 'test gift'
but when I run the conaints query with this statement:
SELECT Name
FROM dbo.Gifts
WHERE CONTAINS(Name, 'test gift')
It throws an error saying: Syntax error near 'gift' in the full-text search condition 'test gift'.
I thought contains could query phrases and multiple words that match and sound alike?