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
注意:以下のDanのコメントによると、このクエリはインデックスを使用せず、大きなテーブルでは低速になります。 INを使用したクエリの方が優れています:
select id from tab where name IN ('blue', 'red', 'white')