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
Uwaga:zgodnie z komentarzem Dana poniżej, to zapytanie nie używa indeksów i będzie powolne na dużej tabeli. Zapytanie z IN jest lepsze:
select id from tab where name IN ('blue', 'red', 'white')