私はオラクルピボットが初めてです。これは可能ですか?
2つの列がType
あり、Value
type value
---------------
a a1
b b1
c c1
etc
このようなものをすべて1行で取得できますか??
a b c
a1 b1 c1
このようなクエリを試すと、次のような出力が得られます
select A,B from tbl
pivot (max(value) for type in ('a' as A,'b' as B))
------------------------------------
A B
null b1
a1 null
ありがとう