有数据表A如图,现有字符串"a,b,c"(字符串内容为动态,也有可能是"a,b"),如何用一条SQL查询语句输出对应的部门"A,B,C"
select * from 表A where find_in_set(人名, '${人名}')
mysql的话就用 select * from A where find_in_set(表内匹配的字段, '字符串内容')>0