網友問題摘抄,不定列轉換

cosio發表於2008-07-28

舉例如下--------

表1內容:
ENFIELD CHNAME
A 序號1
B 序號2
C 序號3
D 序號4
E 序號5
... ...

------------

表2內容:
A B C D E ......
值1 值2 值3 值4 值5 ......

------------

要求SQL查詢得到如下效果:把表2中的一行資料,作為表1新增的一列(VALUES)顯示出來。

ENFIELD CHNAME VALUES
A 序號1 值1
B 序號2 值2
C 序號3 值3
D 序號4 值4
E 序號5 值5
... ... ...

----------------------

SQL> select * from table1;

ENFIELD CHNAME
------- ----------A id1
B id2
C id3
D id4
E id5

SQL
> select * from table2;

A B C D E
---------- ---------- ---------- ---------- ----------value1 value2 value3 value4 value5

SQL
>
SQL
> select t1.ENFIELD, t1.CHNAME, tt2.cols_values
2 from table1 t1,
3 (select substr(',' || cols || ',',
4 instr(',' || cols || ',', ',', 1, 2 * rn - 1) + 1,
5 instr(',' || cols || ',', ',', 1, 2 * rn - 1 + 1) -
6 instr(',' || cols || ',', ',', 1, 2 * rn - 1) - 1) as new_cols,
7 substr(',' || cols || ',',
8 instr(',' || cols || ',', ',', 1, 2 * rn) + 1,
9 instr(',' || cols || ',', ',', 1, 2 * rn + 1) -
10 instr(',' || cols || ',', ',', 1, 2 * rn) - 1) as cols_values
11 from (select rownum rn from all_objects where rownum <= 21) ao,
12 (select 'A' || ',' || A || ',' || 'B' || ',' || B || ',' || 'C' || ',' || C || ',' || 'D' || ',' || D || ',' || 'E' || ',' || E as cols
13 from table2) t2
14 where instr(',' || cols, ',', 1, 2 * rn - 1) > 0) tt2
15 where t1.ENFIELD = tt2.new_cols;

ENFIELD CHNAME COLS_VALUES
------- ---------- ------------------------------------------------------------------A id1 value1
B id2 value2
C id3 value3
D id4 value4
E id5 value5

[@more@]

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

相關文章