码迷,mamicode.com
首页 > 其他好文 > 详细

列转行

时间:2014-10-18 17:02:08      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:dba   oracle   select   sql   数据库   

test:

c1   c2

1    a

1     b

2     c

 

select
            to_char(wmsys.wm_concat(c2))                                   ,
            to_char(replace(wmsys.wm_concat(c2),‘,‘,‘/‘))

     from
            test   

  group by
             c1

show case:

1     a,b   a/b

2      c       c

同样的功能函数:

 select listagg(c2,‘,‘) within group(order by c1)        from test      ;  

列转行

标签:dba   oracle   select   sql   数据库   

原文地址:http://blog.csdn.net/jenya007/article/details/40211991

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!