Hi, I need to do something with sql and I am not quite sure how to do it.
I have a variable string (urls), and I need to check if that string contains any of the keywords that are stored in a table.
For example, I have a table with the entries "keywordX1", "keywordX2", "keywordX3", etc.
Then I have a string such as "http://www.domainwithkeywordX2.com/path/?param=value
How can I quickly find if the url string contains (and which ones) keywords from the table using a sql query? (or any other fast method)
I can't select all the keywords and loop that because in the future the keywords list will be huge, and I need speed.
Thanks.