首页 > 数据库技术 > 详细

oracle 行转列、列转行

时间:2015-06-12 00:41:26      阅读:241      评论:0      收藏:0      [点我收藏+]

最近做数据处理,经常遇到需要行转列、列转行的场景,记录个非常简单实用的oracle  列转行、行转的列方法

1、行转列,基础数据如下

技术分享

做行转列处理 处理SQL

select user_name,max(date_201501) as date_201501,max(date_201502),max(date_201503),max(date_201504) from
(select t.user_name,
case when t.acct_date = ‘201501‘ then t.flow end as date_201501,
case when t.acct_date = ‘201502‘ then t.flow end as date_201502,
case when t.acct_date = ‘201503‘ then t.flow end as date_201503,
case when t.acct_date = ‘201504‘ then t.flow end as date_201504 from DATD_TEST t) t1 group by user_name;

处理结果:

技术分享

2、列转行,基础数据如上

列转行处理SQL:

select user_name,‘201501‘ as acct_name ,date_201501 as flow from DATD_TEST2
union all
select user_name,‘201502‘ as acct_name,date_201502 as flow from DATD_TEST2
union all
select user_name,‘201503‘ as acct_name,date_201503 as flow from DATD_TEST2
union all
select user_name,‘201504‘ as acct_name,date_201504 as flow from DATD_TEST2 order by user_name;

处理结果:

技术分享

问题解决~~~~

 

oracle 行转列、列转行

原文:http://www.cnblogs.com/yi-0816/p/4570605.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!