oracle 11g的行轉列、列轉行

Nalternative發表於2011-04-19
oracle10g中行轉列比較麻煩,需要寫很多個decode,在11g中
使用以下語法就可以行轉列、列轉行,測試語句如下:
--行轉列
with
a
as
(
select '4_20110417' ci,'A' ab,1 num from dual
union all
select '4_20110417','B',2 from dual
union all
select '5_20110417','A',1 from dual
union all
select '5_20110417','B',4 from dual
)
select *
from a
pivot
(
sum(num)
for ab in('A','B')
)
/*
4_20110417 1 2
5_20110417 1 4
*/
--列轉行                                    
with
a
as
(
select '4_20110417' ci,1 a ,2  b from dual
union all
select '5_20110417' ,1,4    from dual
)
select ci,bc,bb from a
unpivot
(
bb
for bc in (a,b)
)

/*
4_20110417 A 1
4_20110417 B 2
5_20110417 A 1
5_20110417 B 4
*/

with
a
as
(
select 'a' CITY1, 'b' CITY2 from dual
union all
select 'a' , 'c' from dual
)
SELECT CITY1, LISTAGG(a.CITY2,';')  WITHIN GROUP (order by a.CITY2 desc) as  CITY2_list
FROM a
GROUP BY a.CITY1;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25323853/viewspace-692841/,如需轉載,請註明出處,否則將追究法律責任。

相關文章