I'm issuing a full-text query that looks like the following.SELECT Competitor, Category, Competitor_Part_Number, Competitor_Product_Name, Competitor_Product_Description, Product_Name, Product_Description, Product_Number_Primary, Product_Number_Secondary, category_id FROM [Product_Upload_Archive] WHERE CONTAINS (*, '"1234" or "2345" or "3456"...')
What I'm interested in now though, is which of those terms in the Contains clause do not match any row. Is there an efficient way to do this without have to search with each term individually?Thanks