select c.ci_id,wm_concat(s.stu_name)
from pm_ci c,pm_stu s
having instr(c.stu_ids,s.stu_id)>0
group by c.ci_id;
instr不是组函数吧
having的后面不可以有组函数吧