主頁 > 知識庫 > table 行轉列的sql詳解

table 行轉列的sql詳解

熱門標簽:分享百度地圖標注多個位置 湖南電腦外呼系統(tǒng)平臺 電銷機器人公司 需要哪些牌照 長沙智能外呼系統(tǒng) 廣東防封卡外呼系統(tǒng)原理是什么 地圖標注牌 外呼系統(tǒng)改進 知名電銷機器人價格 菏澤語音電銷機器人加盟公司
一、要求
1 創(chuàng)建數據表
CREATE TABLE [dbo].[StuScore](
[stuid] [int] NOT NULL,
[subject] [nvarchar](30) NULL,
[score] [decimal](5, 1) NULL
)
2 插入測試數據
stuid subject score
3 chinese 76.0
3 math 73.0
4 chinese 82.0
5 chinese 66.0
5 math 93.0
6 chinese 67.0
7 math 83.0
8 chinese 77.0
8 math 84.0
3 行轉列后的結果
stuid chinese math
3 76.0 73.0
4 82.0 0.0
5 66.0 93.0
6 67.0 0.0
7 0.0 83.0
8 77.0 84.0
二 、分析
1 行轉列,一個重點就是怎么樣知道有多少列,怎么樣創(chuàng)建這些列?我們可以先把這個問題擱置,而假設這些列是已知的。 例如示例數據中,可以先假設subject的數據[chinese,math]是已知的,這樣問題就簡化了許多
2 當已知了chinese,math后,我們至少要先得到轉換后的tabel結構
如下;
select stuid, 0 as chinese, 0 as math from dbo.StuScore
結果如下
stuid chinese math
3 0 0
3 0 0
4 0 0
5 0 0
5 0 0
6 0 0
7 0 0
8 0 0
8 0 0
3 接著就需要往這個數據集中去填充chinese, math的數據
select stuid,
case subject when 'chinese' then score else 0 end as chinese,
case subject when 'math' then score else 0 end as math
from dbo.StuScore
結果如下:
stuid chinese math
3 76.0 0.0
3 0.0 73.0
4 82.0 0.0
5 66.0 0.0
5 0.0 93.0
6 67.0 0.0
7 0.0 83.0
8 77.0 0.0
8 0.0 84.0
4 細心的讀者會發(fā)現步驟3中的結果與我們想要的已經非常接近了,只需再做一個sum()處理,就OK了
select stuid,
sum(case subject when 'chinese' then score else 0 end ) as chinese,
sum(case subject when 'math' then score else 0 end ) as math
from dbo.StuScore group by stuid
得到的正是我們想要的結果
stuid chinese math
3 76.0 73.0
4 82.0 0.0
5 66.0 93.0
6 67.0 0.0
7 0.0 83.0
8 77.0 84.0
是不是現在就已經完成了呢?答案是否定的。前面我們已經說過,是為了簡化問題,在假設已經知道了subject數據的情況下,這么處理的,實際上subject的數據是可變的,未知的,接下來就是要解決這個問題了
5 要獲取subject的數據其實很簡單
select distinct subject from dbo.StuScore
獲取以后怎樣得到case subject when 'chinese' then score else 0 end 這種語句?
可以根據subject的值去動態(tài)的組sql語句
看下面的一段代碼
declare @sql varchar(2000)
set @sql=''
select @sql =@sql+ ',case subject when '''+subject+''' then 1 else 0 end as ' + subject
from (select distinct subject from dbo.StuScore) as sub
print @sql
message打印的信息如下:
,case subject when 'chinese' then 1 else 0 end as chinese,case subject when 'math' then 1 else 0 end as math
6 最后我們就需要將前面步驟綜合起來,得到最終的sql
declare @sql varchar(2000)
set @sql='select stuid'
select @sql =@sql+ ',sum(case subject when '''+subject+''' then score else 0 end) as ' + subject
from (select distinct subject from dbo.StuScore) as sub
set @sql=@sql + ' from dbo.StuScore group by stuid'
exec(@sql)
stuid chinese math
3 76.0 73.0
4 82.0 0.0
5 66.0 93.0
6 67.0 0.0
7 0.0 83.0
8 77.0 84.0
至此,整個分析過程和結果就都出來了。
初試寫文章, 多包涵,指正。
您可能感興趣的文章:
  • mysql 行轉列和列轉行實例詳解
  • sql語句實現行轉列的3種方法實例
  • SQLServer行轉列實現思路記錄
  • MySQL存儲過程中使用動態(tài)行轉列
  • mssql 數據庫表行轉列,列轉行終極方案
  • Sql Server 2000 行轉列的實現(橫排)
  • SQL查詢語句行轉列橫向顯示實例解析
  • sql動態(tài)行轉列的兩種方法
  • SQL行轉列和列轉行代碼詳解
  • SQL基礎教程之行轉列Pivot函數

標簽:西寧 商洛 天水 呼和浩特 珠海 美容院 泉州 福建

巨人網絡通訊聲明:本文標題《table 行轉列的sql詳解》,本文關鍵詞  table,行轉列,的,sql,詳解,;如發(fā)現本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《table 行轉列的sql詳解》相關的同類信息!
  • 本頁收集關于table 行轉列的sql詳解的相關信息資訊供網民參考!
  • 推薦文章