oracle循环插入10000条数据

declare
i integer ; --定义变量
 
begin
i := 1;
loop
/* 插入数据 */
insert into test (student, username, password )values(concat('100',replace(lpad(i,3),' ','0')),,  'lisi','123');
i := i + 1;
exit when i > 10000;--插入一万条数据
end loop;
commit;
posted @ 2021-01-12 13:41  mandy3651423  阅读(789)  评论(0编辑  收藏  举报