1
前幾天我問過類似的問題。Oracle的sql pivot類型按
我有含材料類型的表:
id type mat_number description count
------------------------------------------------
a mat_1 123456 wood type a 5
a mat_2 333333 plastic type a 8
b mat_1 654321 wood type b 7
c mat_2 444444 plastic type c 11
d mat_1 121212 wood type z 8
d mat_2 444444 plastic type c 2
d mat_2 555555 plastic type d 3
與SQL我想創建列表如下:
id mat_1 description count mat_2 description count
-------------------------------------------------------------------
a 123456 wood type a 5 333333 plastic type c 8
b 654321 wood type b 7 null
c null 444444 plastic type c 11
d 121212 plastic type c 8 444444 plastic type c 2
d null 555555 plastic type c 3
那是可能的支點?
雖然不是一個完整的答案,http://stackoverflow.com/questions/32828265/rows-to-column-in-oracle#32828478與代碼類似的問題,可能是能夠幫助 –
在哪裏問題?你試過什麼了? – lad2025