tags:

views:

84

answers:

4
+4  A: 

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');
Pekka
+4  A: 

Per this prior stackoverflow question, you might have better luck with a REGEXP query:

http://stackoverflow.com/questions/1127088/mysql-like-in

Fosco
+1 nice! It's going to be slow, but exactly what the OP wants (as far as can be told what he wants.)
Pekka
This is valid, but Full Text Search (FTS) is a far better way to handle the situation.
OMG Ponies
A: 

No, but you may be able to use RLIKE depending on your version of MySQL

Mark Baker
A: 

No, but you could use REGEXP.

...WHERE field REGEXP 'abc|xyz'
TerryMatula