Viewing 4 posts - 1 through 4 (of 4 total)
Hi,
The reason why you are not getting the result is that the record which matches "day", doesnt have "5" in that record and vice-versa.
So if you try with OR instead...
June 2, 2008 at 11:07 pm
Hi,
If you want to use contains then you can't use like what you did it.
where contains(@field1,'"5 AND day"') -- This is wrong, because in full text search every word should...
June 2, 2008 at 7:12 am
Hi,
I have used sql profiler also to find out the problem..
In sql profiler what i found that it was using sp_cursorprepare to supply all the parameterized values,because we are using...
June 2, 2008 at 6:11 am
Hi,
If you want use multiple words inside contains keyword then your string should be like
where contains(field1,' "firstword" or "secondword"')
So if you want to use parameterized value then you have...
June 1, 2008 at 11:52 pm
Viewing 4 posts - 1 through 4 (of 4 total)