droppedeye
Programmer
Is it possible to use a LIKE with an IN statement? The following example might make this more clear.
SELECT stuff from joined tables
WHERE searchTerm IN (SELECT allkeywords)
What I want to want to have happen is if the keywords returned by the inner query is "barely" and the searchTerm is "are" I want it to be a match. As far as my understanding goes the IN statement is looking for complete matches. Any help would be greatly appreciated! Thanks.
SELECT stuff from joined tables
WHERE searchTerm IN (SELECT allkeywords)
What I want to want to have happen is if the keywords returned by the inner query is "barely" and the searchTerm is "are" I want it to be a match. As far as my understanding goes the IN statement is looking for complete matches. Any help would be greatly appreciated! Thanks.