-- 1 instr(字段名,子字符串)
select * from 表名 where instr(role_ids,'2');
-- 2 like%子字符串%
select * from 表名 where role_ids like '%2%';
-- 3 locate(子字符串,字段名)
select * from 表名 where locate ('2',role_ids);
-- 4 find_in_set(子字符串,字段名)
SELECT * FROM 表名 WHERE find_in_set('2',role_ids);
前三种
适合子字符串左右两边都有限制符的字符串,比如"|1|2|3|"等
第四种
只能查询,逗号分隔的字符串
查询结果