--oracle根据分隔符将一行拆分为多行
with tmp as --临时数据集
(select '1,2,3' val
from dual
union all
select '4,5,6' val
from dual)
select regexp_substr(t.val, '[^,]+', 1, t2.lv)--截取对应行数的数据
from tmp t,
(select level lv--生成行数序列数据 1到最大行数
from (select max(regexp_count(a.val, '[^,]+', 1)) r_count--计算数据集中拆分后最大的行数
from tmp a) b
connect by level <= b.r_count) t2
where regexp_substr(t.val, '[^,]+', 1, t2.lv) is not null-- 排除掉空的数据