with temp as
(
select FILE_PATH as text from TAB_CONTRACT
)
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
)

相关文章:

  • 2021-11-18
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2022-03-08
  • 2022-12-23
  • 2021-10-07
  • 2022-02-05
猜你喜欢
  • 2021-10-26
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2021-10-06
相关资源
相似解决方案