古典的な方法は、左右にコンマを追加することです:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
ただし、 find_in_set また動作します:
select * from shirts where find_in_set('1',colors) <> 0
古典的な方法は、左右にコンマを追加することです:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
ただし、 find_in_set また動作します:
select * from shirts where find_in_set('1',colors) <> 0