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

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -