oracle 行列转换函数

 

oracle 10g wmsys.wm_concat行列转换函数的使用:
首先让我们来看看这个神奇的函数wm_concat(列名),该函数可以把列值以","号分隔起来,并显示成一行,接下来上例子,看看这个神奇的函数如何应用


1、把结果按分组用逗号分割,以一行打印出来。(如果需要换其它的可以用replace函数:replace(wm_concat(name),',','|'))
select t.u_id,
       wmsys.wm_concat(t.goods),
       wmsys.wm_concat(t.goods || '(' || t.u_id || '斤)')
  from tb_index t
 group by t.u_id;


2、over(partition by t.u_id)用法:
  select t.u_id,
       wmsys.wm_concat(t.goods || '(' || t.u_id || '斤)') over(partition by t.u_id)
  from tb_index t;


3、over(order by t.u_id)用法:
  select t.u_id,
       wmsys.wm_concat(t.goods || '(' || t.u_id || '斤)') over(partition by t.u_id)
  from tb_index t;


4、懒人扩展用法:(大表很多字段我需要串起来)
select 'select '|| wm_concat('t.'||column_name) || ' from TB_INDEX t' from user_tab_columns where table_name='TB_INDEX';


sys_connect_by_path(columnname, seperator) :用来构造树路径的,所以需要和connect by一起来用。
sys_connect_by_path 函数主要作用是可以把一个父节点下的所有子节点通过某个字符进行区分,然后连接在一个列中显示 

select t.areaid,
       t.parentareaid,
       t.areaname,
       sys_connect_by_path(t.areaname, '-') area
  from tb_index t
 start with t.areaname = '中国'
connect by t.parentareaid = prior t.areaid;

 

 

listagg:11gr2还新增了一个分析函数LISTAGG,这个函数的功能实现字符串的连接

create table t (id number, name varchar2(30), type varchar2(20));

insert into t
  select rownum, object_name, object_type from dba_objects;

select listagg(name, ',') within group(order by id)
  from t
 where rownum < 10;

select type, listagg(name, ',') within group(order by id) name
 from t
where type in ('DIRECTORY', 'JAVA SOURCE', 'SCHEDULE')
group by type;

select name,
       listagg(name, ',') within group(order by id) over(partition by type) s_name
  from t
 where type in ('DIRECTORY', 'JAVA SOURCE', 'SCHEDULE');

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值