select c.ci_id,wm_concat(p.stu_name)
from ci_id c, pm_stu p
having instr(c.stu_ids,p.stu_id) > 0
group by c.ci_id;
from ci_id c, pm_stu p
having instr(c.stu_ids,p.stu_id) > 0
group by c.ci_id;
2016-10-13
select ci_id ,wmsys.wm_concat(stu_name) stu_name
from (select e.ci_id,d.stu_name
from pm_ci e,pm_stu d
where instr(e.stu_ids,d.stu_id)>0) c
group by ci_id
from (select e.ci_id,d.stu_name
from pm_ci e,pm_stu d
where instr(e.stu_ids,d.stu_id)>0) c
group by ci_id
2016-10-07
看到各位學(xué)員的評(píng)論,很高興,也很欣慰,能把自己的知識(shí)讓更多的人知道。
很多學(xué)員都提到,希望能有Oracle高級(jí)的課程,其實(shí)我已經(jīng)出了。
有興趣了解的學(xué)員,請(qǐng)給我寫郵件:collen_training@126.com
祝大家學(xué)有所成
趙強(qiáng)
很多學(xué)員都提到,希望能有Oracle高級(jí)的課程,其實(shí)我已經(jīng)出了。
有興趣了解的學(xué)員,請(qǐng)給我寫郵件:collen_training@126.com
祝大家學(xué)有所成
趙強(qiáng)
2016-10-04