码迷,mamicode.com
首页 > 数据库 > 详细

oracle行转列实践

时间:2017-06-29 14:04:24      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:sum   函数   value   images   result   logs   ict   where   src   

在Oracle 11g中,Oracle 增加了2个查询:pivot(行转列) 和unpivot(列转行)

pivot(聚合函数 for 列名 in(类型)) ,其中 in(‘‘) 中可以指定别名,in中还可以指定子查询

行转列:

select * from rhsa_gcfx_result order by org_id,item,dictname

技术分享

 select org_id,item,sum(value) from rhsa_gcfx_result where dictname = ‘入院途径‘ and 1=1 group by item,org_id order by org_id,item

技术分享

将item列转换成行

select * from (select org_id,item,sum(value) value from rhsa_gcfx_result where dictname = ‘入院途径‘ and 1=1 group by item,org_id)
pivot (sum(value) for item in (‘1. 急诊‘ 急诊 , ‘2. 门诊‘ 门诊, ‘3. 其他医疗机构转入‘ 其他医疗机构转入, ‘9. 其他‘ 其他))

技术分享

 

oracle行转列实践

标签:sum   函数   value   images   result   logs   ict   where   src   

原文地址:http://www.cnblogs.com/liutie/p/7094045.html

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