摘要:ORACLE把多行轉換成一合併列
wmsys.wm_concat 資料庫內建函式:把多行轉換成一合併列
例如:
Select a.id from table a
結果:
1 A123456789
2 A987654321
把多行轉換成一合併列
select wmsys.wm_concat(a.id) from table a
結果:A123456789,A987654321
from:http://blog.xuite.net/chocopie0226/oracle/64299979-ORACLE%E6%8A%8A%E5%A4%9A%E8%A1%8C%E8%BD%89%E6%8F%9B%E6%88%90%E4%B8%80%E5%90%88%E4%BD%B5%E5%88%97