how do I find, with full text search all words that match 'ability' mask, like "suitability" and "dependability", etc? is that possible?
Asked
Active
Viewed 2,916 times
5
-
Here is how to do it: http://stackoverflow.com/questions/2962776/using-full-text-search-in-order-to-find-partial-words-sql-server-2008 – diegol Dec 06 '12 at 12:10
-
Here's the answer: http://stackoverflow.com/questions/2962776/using-full-text-search-in-order-to-find-partial-words-sql-server-2008 – diegol Dec 07 '12 at 09:31
2 Answers
0
I've had that problem, and there didn't seem any nice way round it but to also chain OR WHERE x LIKE "%term%" searches in each individual field.

user97410
- 714
- 1
- 6
- 22