Hi,
DB: SQL Server 2005
I'm trying to build in search functionality into my app using FreeTextTable (because it allows searching accross columns and provides ranking).
I'm having difficulty working out how to specify the AND search operator.
E.G. 1
E.G. 2Code:... -- Or Search, which works LEFT OUTER JOIN FREETEXTTABLE(People,(Interests,Comments,Key_Phrases),'sheep calvin') AS Rank ...
Any ideas or alternatives will be gratefully receivedCode:... -- AND Search, doesn't work LEFT OUTER JOIN FREETEXTTABLE(People,(Interests,Comments,Key_Phrases),'sheep AND calvin') AS Rank ...
Regards Al




Reply With Quote