Klasycznym sposobem byłoby dodanie przecinków z lewej i prawej strony:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Ale find_in_set działa również:
select * from shirts where find_in_set('1',colors) <> 0
Klasycznym sposobem byłoby dodanie przecinków z lewej i prawej strony:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Ale find_in_set działa również:
select * from shirts where find_in_set('1',colors) <> 0