oracle循环插入1万条数据
Posted Rainyn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle循环插入1万条数据相关的知识,希望对你有一定的参考价值。
declare
maxnumber constant number:=10000;
i number :=1;
begin
for i in 1..maxnumber loop
insert into DEPT(DEPTID,DEPTNAME,FATHERID)
values(i,CONCAT(‘test‘,i),i-1); --CONCAT(‘test‘,i)是将test与i进行拼接
end loop;
dbms_output.put_line(‘ 成功录入数据! ‘);
commit;
end;
以上是关于oracle循环插入1万条数据的主要内容,如果未能解决你的问题,请参考以下文章