主頁 > 知識(shí)庫 > sql動(dòng)態(tài)行轉(zhuǎn)列的兩種方法

sql動(dòng)態(tài)行轉(zhuǎn)列的兩種方法

熱門標(biāo)簽:美團(tuán)地圖標(biāo)注商戶認(rèn)證注冊(cè) 慶陽地圖標(biāo)注 北京400電話辦理多少錢 浙江穩(wěn)定外呼系統(tǒng)供應(yīng)商 榕城市地圖標(biāo)注 電銷外呼系統(tǒng)軟件功能 咸陽電腦外呼系統(tǒng)運(yùn)營商 怎么給高德做地圖標(biāo)注 承德地圖標(biāo)注公司名需要花錢嗎

第一種方法:

復(fù)制代碼 代碼如下:

select *from ( select Url,case  when  Month=01 then  '1月' when  Month=02 then '2月' when  Month=03 then  '3月' when  Month=04 then '4月' when  Month=05 then  '5月' when  Month=06 then '6月' when  Month=07 then  '7月' when  Month=08 then '8月' when  Month=09 then  '9月' when  Month=10 then ' 10月' when  Month=11 then  '11月' when  Month=12 then ' 12月'

 end  month,Quality from  (

select Url,DATENAME(M,AuditingTime)Month,SUM(Quality) Quality from  tb_order as a left join  tb_WebSiteInfo as b on a.WebSiteInfoID=b.ID left join  tb_OrderList as c on c.OrderID=a.ID where AuditingTime>'2013-01-01' and b.ID>0 and Auditing=2

group by Url,DATENAME(M,AuditingTime) )as h ) as hh

 pivot ( sum(Quality) for month in([1月],[2月],[3月],[4月],[5月],[6月],[7月],[8月],[9月],[10月],[11月],[12月])) as a


第二種方法:
復(fù)制代碼 代碼如下:

declare @sql varchar(8000)

select @sql = isnull(@sql + ',' , '') + '['+CONVERT(varchar(7),AuditingTime,20)+']'

from  tb_order as a left join  tb_WebSiteInfo as b on a.WebSiteInfoID=b.ID left join  tb_OrderList as c on c.OrderID=a.ID where AuditingTime>'2013-01-01' and b.ID>0 and Auditing=2

group by CONVERT(varchar(7),AuditingTime,20) print @sql declare @sql2 varchar(8000)='' set @sql2=' select *from (

select Url, CONVERT(varchar(7),AuditingTime,20) AuditingTime,SUM(Quality) Quality from  tb_order as a left join  tb_WebSiteInfo as b on a.WebSiteInfoID=b.ID left join  tb_OrderList as c on c.OrderID=a.ID where b.ID>0 and Auditing=2

group by Url, CONVERT(varchar(7),AuditingTime,20)

) as hh pivot (sum(Quality) for AuditingTime in (' + @sql + ')) b'

print @sql2

exec(@sql2)

您可能感興趣的文章:
  • mysql 行轉(zhuǎn)列和列轉(zhuǎn)行實(shí)例詳解
  • sql語句實(shí)現(xiàn)行轉(zhuǎn)列的3種方法實(shí)例
  • SQLServer行轉(zhuǎn)列實(shí)現(xiàn)思路記錄
  • MySQL存儲(chǔ)過程中使用動(dòng)態(tài)行轉(zhuǎn)列
  • mssql 數(shù)據(jù)庫表行轉(zhuǎn)列,列轉(zhuǎn)行終極方案
  • Sql Server 2000 行轉(zhuǎn)列的實(shí)現(xiàn)(橫排)
  • SQL查詢語句行轉(zhuǎn)列橫向顯示實(shí)例解析
  • table 行轉(zhuǎn)列的sql詳解
  • SQL行轉(zhuǎn)列和列轉(zhuǎn)行代碼詳解
  • SQL基礎(chǔ)教程之行轉(zhuǎn)列Pivot函數(shù)

標(biāo)簽:拉薩 呼和浩特 新鄉(xiāng) 貴州 昭通 重慶 江蘇 上海

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《sql動(dòng)態(tài)行轉(zhuǎn)列的兩種方法》,本文關(guān)鍵詞  sql,動(dòng)態(tài),行轉(zhuǎn)列,的,兩種,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《sql動(dòng)態(tài)行轉(zhuǎn)列的兩種方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于sql動(dòng)態(tài)行轉(zhuǎn)列的兩種方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章