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