sql 批量处理

declare i int;
begin
i:=0;
while i < 1000
loop
select * from table where rownum<1000;
i:=i+1;
commit;
end loop;
end;

posted @ 2016-08-01 17:40  木子小三  阅读(137)  评论(0编辑  收藏  举报