I have a field COLORS (varchar(50)) in a my table SHIRTS that contains a comma delimited string such as 1,2,5,12,15,. Each number repr
COLORS (varchar(50))
SHIRTS
1,2,5,12,15,
FIND_IN_SET is your friend in this case
select * from shirts where FIND_IN_SET(1,colors)