溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Oracle pivot & unpivot

發(fā)布時間:2020-07-07 18:40:48 來源:網(wǎng)絡(luò) 閱讀:638 作者:斷情漠 欄目:關(guān)系型數(shù)據(jù)庫

pivot & unpivot 11g新特性

1     pivot

-對的形式出現(xiàn),典型的行轉(zhuǎn)列報表函數(shù)。

create table test_demo(id int,name varchar(20),nums int);  ---- 創(chuàng)建表
insert into test_demo values(1, '蘋果', 1000);
insert into test_demo values(2, '蘋果', 2000);
insert into test_demo values(3, '蘋果', 4000);
insert into test_demo values(4, '橘子', 5000);
insert into test_demo values(5, '橘子', 3000);
insert into test_demo values(6, '葡萄', 3500);
insert into test_demo values(7, '芒果', 4200);
insert into test_demo values(8, '芒果', 5500);
commit;
 
select name, sum(nums)
  from test_demo
 group by name;
 
select *
  from (select name, nums fromtest_demo)
pivot(sum(nums)
   for name in('蘋果', '橘子', '葡萄', '芒果'));
 
SQL> select *
  2    from (select name, nums from test_demo)
  3  pivot(sum(nums)
  4     for name in('蘋果' as "蘋果", '橘子', '葡萄', '芒果'));  --別名使用
        蘋果       '橘子'       '葡萄'       '芒果'
---------- ---------- ---------- ----------
      7000       8000       3500       9700

 

這里再說語法:

pivot聚合函數(shù) for 列名 in 類型 ,其中 in 中可以指定別名,in中還可以指定子查詢,比如 select distinct code from customers

2     unpivot

典型的列轉(zhuǎn)行報表函數(shù)

create table Fruit(id int,name varchar(20), Q1 int, Q2 int, Q3 int,Q4 int);
這里Q1 int, Q2int, Q3 int, Q4 int表示四季度。
insert into Fruit values(1,'蘋果',1000,2000,3300,5000);
insert into Fruit values(2,'橘子',3000,3000,3200,1500);
insert into Fruit values(3,'香蕉',2500,3500,2200,2500);
insert into Fruit values(4,'葡萄',1500,2500,1200,3500);
commit;
select * from Fruit;
 
select id , name, quarter, sell from Fruit unpivot (sell for quarterin (q1, q2, q3, q4));

 

注意:unpivot沒有聚合函數(shù),quartersell字段也是臨時的變量。

這里sell是統(tǒng)計(jì)值,quarter表示季度及類型。

執(zhí)行結(jié)果:

SQL> select id , name, quarter, sell from Fruit unpivot (sell forquarter in (q1, q2, q3, q4));
                                    ID NAME                QUARTER                                    SELL
--------------------------------------- -------------------- ----------------------------------------------
                                     1 蘋果                 Q1                                         1000
                                     1 蘋果                 Q2                                         2000
                                     1 蘋果                 Q3                                         3300
                                     1 蘋果                 Q4                                         5000
                                     2 橘子                 Q1                                         3000
                                     2 橘子                 Q2                                         3000
                                      2 橘子                 Q3                                         3200
                                     2 橘子                 Q4                                         1500
                                     3 香蕉                 Q1                                         2500
                                     3 香蕉                 Q2                                         3500
                                     3 香蕉                 Q3                                         2200
                                     3 香蕉                 Q4                                         2500
                                     4 葡萄                 Q1                                         1500
                                     4 葡萄                 Q2                                         2500
                                     4 葡萄                 Q3                                         1200
                                     4 葡萄                 Q4                                         3500


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI