oracle查询学生选择课

来源:互联网 发布:table js表格数据合计 编辑:程序博客网 时间:2024/04/29 18:08

select c.ci_id,wm_concat(s.stu_name)

from pm_ci c,pm_stu s

where instr(c.stu_ids,s.stu_id)>0

group by ci_id

0 0