Divide the value of a field into multiple records by delimiter

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
)

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324691566&siteId=291194637