insert into test1 (TID,TNAME) select * from ( select 1,11 from dual union all select 2,22 from dual union all select 3,33 from dual )@H_404_1@
这段代码会出错,因为有2个相同的值在里面,必须加别名 as **
insert into test1 (TID,11,22,33,33 from dual )@H_404_1@ 所以,最好用 ? ,把值set进去 原文链接:https://www.f2er.com/oracle/207351.html