當前位置:首頁 » 編程語言 » sql行列轉換動態

sql行列轉換動態

發布時間: 2023-06-09 23:55:09

sql server 行轉列

創建測試表

createtabletest
(_keyvarchar(10),
_valuevarchar(10),
idint)

insertintotestvalues('ceshi','測試值',10)
insertintotestvalues('ceshi','測試值',11)
insertintotestvalues('ceshi2','測試值2',11)

執行

declare@sqlvarchar(4000)
set@sql='selectid'
select@sql=@sql+',max(case_keywhen'''+[_key]+'''then[_value]end)as
['+_key+']'
from(selectdistinct_keyfromtest)asa
select@sql=@sql+'fromtestgroupbyid'
exec(@sql)

結果


額,我那個第三條數據id寫錯了,不過方法還是這個

⑵ sql 2000 結合兩張表「動態」實現 行轉列

select
bdate,
max(case when area='保養一區' then 1 else 0 end),
max(case when area='保養二區' then 1 else 0 end),
max(case when area='保養三區' then 1 else 0 end),
……
from tablename
group by bdate

熱點內容
java返回this 發布:2025-10-20 08:28:16 瀏覽:543
製作腳本網站 發布:2025-10-20 08:17:34 瀏覽:829
python中的init方法 發布:2025-10-20 08:17:33 瀏覽:534
圖案密碼什麼意思 發布:2025-10-20 08:16:56 瀏覽:715
怎麼清理微信視頻緩存 發布:2025-10-20 08:12:37 瀏覽:638
c語言編譯器怎麼看執行過程 發布:2025-10-20 08:00:32 瀏覽:949
郵箱如何填寫發信伺服器 發布:2025-10-20 07:45:27 瀏覽:206
shell腳本入門案例 發布:2025-10-20 07:44:45 瀏覽:64
怎麼上傳照片瀏覽上傳 發布:2025-10-20 07:44:03 瀏覽:759
python股票數據獲取 發布:2025-10-20 07:39:44 瀏覽:661