0
我嘗試將分組元素作爲列和計數作爲行元素。SQL分組和計數在一起
可能的狀態= IO,NIO,打開,關閉,取消
可能類型=類型A,類型B,typeC,鍵入
MyTable (date, status, type, count)
2014-06-27,OPEN,typeA, 1
2014-07-01,OPEN,typeA, 1
2014-07-02,IO,typeB, 2
2014-07-02,IO,typeC, 3
2014-07-02,NIO,typeC, 4
結果應該的樣子。 (關於日期和狀態)
date,status,typeA_Count, typeB_Count, typeC_Count, typeD_Count
2014-06-27,OPEN,1, 0, 0, 0
2014-07-01,OPEN,1, 0, 0, 0
2014-07-02,IO, 0, 2, 3, 0
2014-07-02,NIO, 0, 0, 4, 0
您正在使用的數據庫? – 2014-09-26 10:33:01
你使用了什麼樣的SQL? – LukeH 2014-09-26 10:33:33
@ AllanS.Hansen我使用Db2 DB ... – Kayser 2014-09-26 10:34:46