Klasickým způsobem by bylo přidat čárky doleva a doprava:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Ale find_in_set také funguje:
select * from shirts where find_in_set('1',colors) <> 0
Klasickým způsobem by bylo přidat čárky doleva a doprava:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Ale find_in_set také funguje:
select * from shirts where find_in_set('1',colors) <> 0