SqlServer行列倒置樣本

來源:互聯網
上載者:User

行列倒置是SqlServer中常用的技巧之一,不同於SqlServer2000用case拼接的方式,SqlServer2005提供pivot和unpivot關鍵字來實現這一技巧。

一.使用PIVOT進行行列倒置

樣本資料庫及測試資料

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

 表RoleCellConvertDemo中的資料如下:

利用pivot將每個季度的利潤轉換成橫向顯示:

select id 編號,[name] 姓名,[1] 第一季度,[2] 第二季度,[3] 第三季度,[4] 第四季度
from RowCellConvertDemo
pivot
(
sum(profile) for quarter in([1],[2],[3],[4])
)as pvt

 結果:

 

 

二.使用unpivot進行反向操作

樣本資料庫及測試資料

create table CellRowConvertDemo(id int,name varchar(50),Q1 int,Q2 int,Q3 int,Q4 int)
insert into CellRowConvertDemo values(1,'a',1000,2000,4000,5000)
insert into CellRowConvertDemo values(2,'b',3000,3500,4200,5500)

CellRowConvertDemo資料:

利用unpivot進行反向操作

select id,[name],quarter,profile
from CellRowConvertDemo
unpivot
(
profile for quarter in([Q1],[Q2],[Q3],[Q4])
)as unpvt

結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.