為什麼pivot函數為什麼要用sum。

來源:互聯網
上載者:User

標籤:create   函數   name   profile   char   div   line   彙總函式   彙總   

問:

create table test(id int,name varchar(20),quarter int,profile int) 
insert into test values(1,‘a‘,1,1000)
insert into test values(1,‘a‘,2,2000)
insert into test values(1,‘a‘,3,4000)
insert into test values(1,‘a‘,4,5000)
insert into test values(2,‘b‘,1,3000)
insert into test values(2,‘b‘,2,3500)
insert into test values(2,‘b‘,3,4200)
insert into test values(2,‘b‘,4,5500)

select* from test

select id,name,
[1] as "一季度",
[2] as "二季度",
[3] as "三季度",
[4] as "四季度"
from
test
pivot
(
sum(profile)
for quarter in
([1],[2],[3],[4])
)
as pvt

我想問大家這段SQL代碼,為什麼pivot函數為什麼要用sum,它不是求和嗎?

答:(一定仔細看下面紅字,答案就在其中)

 

create table test(id int,name varchar(20),quarter int,profile int)
insert into test values(1,‘a‘,1,1000)
insert into test values(1,‘a‘,2,2000)
insert into test values(1,‘a‘,2,5000)--看這裡
insert into test values(1,‘a‘,3,4000)
insert into test values(1,‘a‘,4,5000)
insert into test values(2,‘b‘,1,3000)
insert into test values(2,‘b‘,2,3500)
insert into test values(2,‘b‘,3,4200)
insert into test values(2,‘b‘,4,5500)

 

select* from test

 

select id,name,
[1] as "一季度",
[2] as "二季度",
[3] as "三季度",
[4] as "四季度"
from
test
pivot
(
sum(profile)
for quarter in
([1],[2],[3],[4])
)
as pvt

 

/*
id name 一季度     二季度                             三季度 四季度
----------- -------------------- ----------- ----------- ----------- -----------
1    a      1000        7000 (7000這裡匯總了)  4000 5000
2    b       3000       3500                               4200 5500*/

 

順帶寫一下: PIVOT的 文法規則 pivot ( 彙總函式(列名)  for  被轉換的列名  in (要顯示出來的列名) ) k這裡的彙總函式可以使sum,也可以是max等。你懂了嗎?沒看懂的話,不用再搜尋了,再仔細看看,這裡就是你要找的

 

為什麼pivot函數為什麼要用sum。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.