我是 Oracle Pivot 的新手。这可能吗?
我有两列Type
和Value
type value
---------------
a a1
b b1
c c1
etc
我能在一行中得到这样的东西吗?
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
谢谢