数据如下:name id张三 1,2,3 要求实现:name id张三 1张三 2张三 3 --创建临时表 create table tmp as(select '张三' name, '1,2,3' id from dual); --写法1 ,level) as id from tmp connect order by id --写法2: ,level)) as id from tmp connect by name = prior name and prior dbms_random.valu…