问答详情
源自:5-5 练习

最后一个练习

如何用MySQL解决,顺便保证ID和名字顺序的一致性

提问者:慕神5423383 2019-03-24 17:37

个回答

  • 慕田峪9362115
    2019-06-04 12:09:25

     单纯 group by 不能在分组里排序吧 需要listagg(..,..) within group(order by..)来调整顺序吧

    select ci,listagg(sname,',') within group(order by sid) from

     aa,bb  where instr(aa.stus,sid)>0 

    group by ci