Oracle中wm_concat与listagg函数的⽤法及区别
1.初始的sql:
select t.*from wp_shipinto t where substr(to_char(t.pshipdate),0,6) ='201907';
查询结果:
2.wm_concat函数:使⽤group by来对itemcode,年⽉进⾏分组,分组后⾏转列显⽰:
select s.itemcode,substr(to_char(s.pshipdate),0,6) as yearmonth,wm_concat(s.pshipqty)  from (select t.*from  wp_shipinto t order by t.pshipdate asc) s
where substr(to_char(s.pshipdate),0,6) ='201907'
group by substr(to_char(s.pshipdate),0,6),s.itemcode;
查询结果(左图):
我们以ITEMCODE为1542的数据为例,可以看到虽然在sql中已经对pshipdate进⾏升序排序,但是在分组、⾏转列之后,yearmonthqty中的数据并不是根据⽇期升序来排列的。
因为在group by之后会打乱原来的顺序。
3. listagg函数:使⽤group by对itemcode,年⽉进⾏分组,⾏转列:
select t.itemcode,substr(to_char(t.pshipdate),0,6) as yearmonth,listagg(t.pshipqty,',') within group(order by t.pshipdate asc) as yearmonthqty from wp_shipinto t
where substr(to_char(t.pshipdate),0,6) ='201907'
group by substr(to_char(t.pshipdate),0,6),t.itemcode;
查询结果:
group by的用法及原理详解yearmonthqty是根据pshipdate升序排列的。
总结:wm_cancat函数⾏转列后,不会按照原有查询结果排序。listagg函数⾏转列后,会按照原有查询结果顺序排列。
如果考虑到需要⾏转列,并且保持分组后顺序不变可以使⽤listagg来完成。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。