数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

Oracle循环向数据库中插入记录


发布日期:2019年06月09日
 
Oracle循环向数据库中插入记录

declare

maxrecords constant int:=;

i int :=;

begin

for i in maxrecords loop

insert into test (column column column……) values ( i ……);

end loop;

commit;

end;

上一篇:利用Oracle分区表来减少磁盘I/O沖突

下一篇:Oracle笔记-优化策略与工具