sql - Asp.net fulltext multiple search terms methodology -
I have a search box that users can type words in a string column with a full text search The table is setup. It says that a user clicks on "Word, Office, Microsoft" and "Search."
Is this the best way to deal with many search terms?
(SUL has a way to include search terms and is not repeated. (Where fts_column, 'searchWord'}} ? I am trying to reduce the amount of calls on the SQL server.
FREETEXT working for you This will separate the string on the basis of word boundaries (word-breaking) in different words. Then you only have a single SQL call.
Comments
Post a Comment