http://dev.mysql .com/doc/refman/5.0/en/string-functions.html#function_find-in-set
select id from tab where find_in_set(name, '$colors') > 0
NB:Gemäß Dans Kommentar unten verwendet diese Abfrage keine Indizes und wird bei großen Tabellen langsam sein. Besser ist eine Abfrage mit IN:
select id from tab where name IN ('blue', 'red', 'white')