De klassieke manier zou zijn om komma's links en rechts toe te voegen:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Maar find_in_set werkt ook:
select * from shirts where find_in_set('1',colors) <> 0
De klassieke manier zou zijn om komma's links en rechts toe te voegen:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Maar find_in_set werkt ook:
select * from shirts where find_in_set('1',colors) <> 0