I'd like to get a 'combined' ranking of OR phrases with CONTAINSTABLE, but have not had any luck. Basically I'm seeking functionality for an AND/OR ability.
For example say I have a query such such as:
SELECT TOP 100 *
FROM JobData AS FT_TBL
INNER JOIN CONTAINSTABLE(JobData, Description, '"microsoft" OR "C#" OR "5 years" OR "winforms"') AS KEY_TBL
ON FT_TBL.Id = KEY_TBL.[KEY]
ORDER BY KEY_TBL.[RANK] DESC
And my table has 1000s of job descriptions where some contain all keywords. What I am seeing is that it is giving the highest rank to those containing "microsoft" (or whatever the first term is). I'd like to have a combined ranking for the OR terms... Essentially a sum of the ranks of each phrase.
How can I accomplish this? It seems as though it should be rather trivial... but my searches have yielded no useful information on the matter.