Cách cổ điển là thêm dấu phẩy vào bên trái và bên phải:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Nhưng find_in_set cũng hoạt động:
select * from shirts where find_in_set('1',colors) <> 0
Cách cổ điển là thêm dấu phẩy vào bên trái và bên phải:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
Nhưng find_in_set cũng hoạt động:
select * from shirts where find_in_set('1',colors) <> 0