FIND_IN_SET(str,strlist)函数 str 要查询的字符串 strlist 字段名 参数以”,”分隔 如 (1,2,6,8) 查询字段(strlist)中包含(str)的结果,返回结果为null或记录 -- 1select find_in_set('1', '1,2,3,4,5,6'); -- 2 select find_in_set('2', '1,2,3,4,5,6'); -- 0 select find_in_set('7', '1,2,3,4,5,6'); -- 0 s