------解决方案--------------------
tb表里只有一条数据…… name telephone 王三/赵四/刘五 123/456/789
SQL code
select regexp_substr(name,'[^/]+',1,rownum) name,
regexp_substr(telephone,'[^/]+',1,rownum) telephone
from tb connect by rownum<=length(regexp_replace(name||'/','[^/]+'))