sql – 在Oracle行的多个列上行使pivot
发布时间:2021-01-25 02:38:54 所属栏目:编程 来源:网络整理
导读:我在Oracle表(tab1)中有以下示例数据,我试图将行转换为列.我知道如安在一列上行使Oracle pivot.可是可以将它应用于多个列吗? 样本数据: Type weight height A 50 10 A 60 12 B 40 8 C 30 15 我想要的输出: A-count B-count C-count A-weight B-weight C-we
我在Oracle表(tab1)中有以下示例数据,我试图将行转换为列.我知道如安在一列上行使Oracle pivot.可是可以将它应用于多个列吗? 样本数据: Type weight height A 50 10 A 60 12 B 40 8 C 30 15 我想要的输出: A-count B-count C-count A-weight B-weight C-weight A-height B-height C-height 2 1 1 110 40 30 22 8 15 我可以做什么: with T AS (select type,weight from tab1 ) select * from T PIVOT ( count(type) for type in (A,B,C,D,E,F) ) 以上查询给出了以下功效 A B C 2 1 1 我可以将sum(*)替代为sum(weight)或sum(height)来动弹高度或重量.我想要做的,但我不能做,是在一个查询中动弹全部三个(计数,重量和高度). 可以用枢轴完成吗? 办理要领如 the documentation shows,您可以有多个聚合函数子句.以是你可以这样做:select * from ( select * from tab1 ) pivot ( count(type) as ct,sum(weight) as wt,sum(height) as ht for type in ('A' as A,'B' as B,'C' as C) ); A_CT A_WT A_HT B_CT B_WT B_HT C_CT C_WT C_HT ---- ---- ---- ---- ---- ---- ---- ---- ---- 2 110 22 1 40 8 1 30 15 假如您但愿凭证表现的次序列,则添加另一级子查询: select a_ct,b_ct,c_ct,a_wt,b_wt,c_wt,a_ht,b_ht,c_ht from ( select * from ( select * from tab1 ) pivot ( count(type) as ct,sum(height) as ht for type in ('A' as A,'C' as C) ) ); A_CT B_CT C_CT A_WT B_WT C_WT A_HT B_HT C_HT ---- ---- ---- ---- ---- ---- ---- ---- ---- 2 1 1 110 40 30 22 8 15 SQL Fiddle. (编辑:湖南网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |