I have the following SQL Query..
SELECT TOP 20 Data.Data_FeedID, Data.Data_Title, Data.Data_Link, Data.Data_Desc, Data.Data_Date, WEIGHT.RANK AS RSSFeedRanking FROM RSS_Feeds_Data Data INNER JOIN CONTAINSTABLE(RSS_Feeds_Data, Data_Desc, 'ISABOUT ("hosting")') WEIGHT ON Data.Data_ID = WEIGHT.[KEY] ORDER BY WEIGHT.RANK DESC
I have a list of words in a string...
tempString = "porno|adult hosting|warez hosting|"
That I would like to make sure is not in the string. I can split out each phrase but unsure where it should be inserted in the above SQL Query.