真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SQLServer中怎么將行數(shù)據(jù)轉(zhuǎn)換為列數(shù)據(jù)

今天就跟大家聊聊有關(guān)SQL Server中怎么將行數(shù)據(jù)轉(zhuǎn)換為列數(shù)據(jù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計制作、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的寶山網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

準備工作

創(chuàng)建表

use [test1]gocreate table [dbo].[student](  [id] [int] identity(1,1) not null,  [name] [nvarchar](50) null,  [project] [nvarchar](50) null,  [score] [int] null, constraint [pk_student] primary key clustered (  [id] asc)with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary]) on [primary]go

插入數(shù)據(jù)

insert into test1.dbo.student(name,project,score)values('張三','android','60'),   ('張三','ios','70'),   ('張三','html5','55'),   ('張三','.net','100'),   ('李四','android','60'),   ('李四','ios','75'),   ('李四','html5','90'),   ('李四','.net','100');

使用Case When和聚合函數(shù)進行行專列

語法

select column_name,() from database.schema.tablegroup by column_name

語法解析

column_name

數(shù)據(jù)列列名

aggregation function

聚合函數(shù),常見的有:sum,max,min,avg,count等。

case when expression

case when表達式

示例

select name,max(case project when 'android' then score end) as '安卓',max(case project when 'ios' then score end) as '蘋果',max(case project when 'html5' then score end) as 'html5',max(case project when '.net' then score end) as '.net'from [test1].[dbo].[student]group by name

示例結(jié)果

轉(zhuǎn)換前

轉(zhuǎn)換后

使用PIVOT進行行專列

PIVOT通過將表達式中一列中的唯一值轉(zhuǎn)換為輸出中的多個列來旋轉(zhuǎn)表值表達式。并PIVOT在最終輸出中需要的任何剩余列值上運行聚合,PIVOT提供比一系列復雜的SELECT...CASE語句指定的語法更為簡單和可讀的語法,PIVOT執(zhí)行聚合并將可能的多行合并到輸出中的單個行中。

語法

select ,   [first pivoted column] as ,   [second pivoted column] as ,   ...   [last pivoted column] as  from   ()    as  pivot (   () for  []    in ( [first pivoted column], [second pivoted column],   ... [last pivoted column]) ) as  ;

語法解析

非聚合列。

[first pivoted column]

第一列列名。

[second pivoted column]

第二列列名。

[last pivoted column]

最后一列列名。