Possible Duplicate:
Is there a combination of “LIKE” and “IN” in SQL?
Is there LIKE IN in mysql?
Possible Duplicate:
Is there a combination of “LIKE” and “IN” in SQL?
Is there LIKE IN in mysql?
No.
But there is fulltext search. Maybe that goes into the right direction?
mysql> SELECT id, body
-> FROM articles WHERE MATCH (title,body) AGAINST
-> ('Keyword1 Keyword2 Keyword3');
Per this prior stackoverflow question, you might have better luck with a REGEXP query:
No, but you may be able to use RLIKE depending on your version of MySQL