oracle逗号隔开行转列_对逗号分隔的字符串进行行转列,详情请进,自带复杂解法,求简易方法...

9i下

--多行

with temp as

(select '6001600301,6001600302,6001600303,6001600304' text from dual

union

select '7001600301,7001600302,7001600303' text from dual

)

select substr(text,instr(text,',',1,rn)+1,instr(text,',',1,rn+1)-instr(text,',',1,rn)-1) text from

(

select ','||t1.text||',' text,t2.rn from

(select text,length(text)-length(replace(text,',',''))+1 rn from temp) t1,

(select rownum rn from all_objects where rownum <= (select max(length(text)-length(replace(text,',',''))+1) rn from temp)) t2

where t1.rn >= t2.rn order by text,rn

)

TEXT

6001600301

6001600302

6001600303

6001600304

7001600301

7001600302

7001600303

--单行

with temp as

(select '6001600301,6001600302,6001600303,6001600304' text from dual)

select substr(text,instr(text,',',1,rn)+1,instr(text,',',1,rn+1)-instr(text,',',1,rn)-1) text from

(

select ','||t1.text||',' text,t2.rn from temp t1,

(select rownum rn from all_objects where rownum <= (select length(text)-length(replace(text,',',''))+1 from temp)) t2

)

TEXT

6001600301

6001600302

6001600303

6001600304

10G下

--多行

with temp as

(select '6001600301,6001600302,6001600303,6001600304' text from dual

union

select '7001600301,7001600302,7001600303' text from dual

)

select regexp_substr(text,'[0-9]+',1,rn) text from

(

select t1.text,t2.rn from

(select text,length(text)-length(replace(text,',',''))+1 rn from temp) t1,

(select level rn from dual connect by rownum <= (select max(length(text)-length(replace(text,',',''))+1) rn from temp)) t2

where t1.rn >= t2.rn order by text,rn

)

TEXT

6001600301

6001600302

6001600303

6001600304

7001600301

7001600302

7001600303

--单行

with temp as

(select '6001600301,6001600302,6001600303,6001600304' text from dual)

select regexp_substr(text,'[0-9]+',1,rn) text from temp t1,

(select level rn from dual connect by rownum <= (select length(text)-length(replace(text,',',''))+1 from temp)) t2

TEXT

6001600301

6001600302

6001600303

6001600304

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值