P粉0368000742023-08-18 10:38:23
FIND_IN_SET在這個情況下是你的朋友
select * from shirts where FIND_IN_SET(1,colors)
P粉2540777472023-08-18 00:12:51
經典的方法是在左右兩邊加上逗號:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
但是find_in_set也可以使用:
select * from shirts where find_in_set('1',colors) <> 0