Based on my understanding, it looks like CONTAINSTABLE
can be given a list of indexed columns to search within. It'll take the given search parameters and look for them in any of the specified columns.
Is it possible to look for "FOO" in column A, and "BAR" in column B only, using CONTAINSTABLE
?
I'm trying to optimize a search query of mine, and it's running slow. It's a basic CONTAINSTABLE
with additional CONTAINS
predicates for additional column filters. I was trying to condense all of the searches into a single CONTAINSTABLE
if possible.