I have a situation where I would like to search a single word.
For that scenario, which query would be good from a performance point of view?
Select Col1, Col2 from Table Where Col1 Like '%Search%'
or
Select Col1, Col2 from Table Where Col1 CONTAINS(Col1,'Search')
?
See Question&Answers more detail:os