MySQL (ik geloof de 5.0-versie) heeft de mogelijkheid toegevoegd om reguliere expressies in uw SQL te gebruiken.
Bekijk:http://www.brainbell.com/tutorials/MySQL/Using_MySQL_Regular_Expression htm
SELECT author_id, content
FROM AuthorTableName
WHERE content REGEXP 'Apple|Orange|Pear'
ORDER BY author_id;