Hello,
Does SQL2000's full text search support the following: (presumably yes)
I have a table with a "Subject" field that has been indexed.
There is a record with "Subject" contains: "test 123"
How can I get that record?
Why the following query doesn't work?
set @text = char(34) + 'test 123' + char(34)
Select * From TableName
Where Contains(Subject, @text)
Thanks.