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;
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;