博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle pivot 和 unpivot 函数的使用
阅读量:6616 次
发布时间:2019-06-25

本文共 854 字,大约阅读时间需要 2 分钟。

pivot的格式

select from
( inner_query)
pivot(aggreate_function for pivot_column in ( list of values))
order by ...;
用法举例:
select
from (
select month,prd_type_id,amount
from all_sales
)
pivot (sum(amount) for month in (1 as JAN,2 as FEB,3 as MAR,4 as APR)
)
order by prd_type_id

转换多个列

select * from
(select month,prd_type_id,amount
from all_sales
)
pivot(sum(amount) for (month,prd_type_id) in (
(1,2) as JAN_P2,(2,3) as FEB_P3)
);

在转换中使用多个聚合函数

select * from (select cust_no,mag_man_cert_type,t.mag_man_cert_no,mag_man_type from L_CIF_ENT_CUST_MAG_MAN_INFO t
pivot (max(mag_man_cert_NO) as no ,max(mag_man_cert_type) as type for mag_man_type In ('01' as GLR01,'02' as GLR02,'03' as GLR03));

unpivot可以实现列转行,所转的列的字段类型必须一致

unpivot 的用法举例:
select * from PIVOT_SALES_DATE
unpivot (amount for month in (JAN,FEB,MAR,APR));

转载于:https://blog.51cto.com/11225554/2150181

你可能感兴趣的文章
银联参数
查看>>
让你的网站用上https
查看>>
poj2243
查看>>
mysql多个TimeStamp设置(转)
查看>>
php中的占位符
查看>>
vue part3.4 小案例 消息订阅pubsub与ajax
查看>>
Strus2学习Exception处理集锦(一)
查看>>
BSS段 data段 text段 堆heap 和 栈stack
查看>>
数据库创建好之后如何创建scott用户
查看>>
关于RichTextBox字体的问题
查看>>
关于今天很热的--FizzBuzzWhizz
查看>>
EBS销售订单挑库发放处理程序
查看>>
APP的内部多语言配置
查看>>
sql 查询表的字段数量
查看>>
POJ-2965 The Pilots Brothers' refrigerator---思维题
查看>>
POJ-2229 Sumsets---完全背包变形
查看>>
crontab报错
查看>>
数据库连接工具
查看>>
Arduino 元件
查看>>
nginx php-fpm 输出php错误日志(转)
查看>>