PLSQL批量插入100000条数据到Oracle DB 2015/08/18 14060 begin for i in 100001 .. 110000 loop insert into emp3 values(i,'dev',1); end loop; end; /