IT运维笔记


oracle使用for循环插入10000条数据

begin
for i in 1..10000
loop
insert into test values (i);
end loop;
commit;
end;