http://dev.mysql .com/doc/refman/5.0/hi/string-functions.html#function_find-in-set
select id from tab where find_in_set(name, '$colors') > 0
एनबी:नीचे दी गई डैन की टिप्पणी के अनुसार, यह क्वेरी इंडेक्स का उपयोग नहीं करती है और बड़ी टेबल पर धीमी हो जाएगी। IN के साथ एक क्वेरी बेहतर है:
select id from tab where name IN ('blue', 'red', 'white')