Home  >  Article  >  Database  >  Oracle存储过程for语句用法

Oracle存储过程for语句用法

WBOY
WBOYOriginal
2016-06-07 17:58:591233browse

Oracle存储过程for语句用法,并且每500条提交一次。 create or replace procedure PS_TEST IS begin FOR i IN 1..10000 LOOP --delete from test where name=to_char(i); - INSERT INTO test VALUES(to_char(i),i+2); IF MOD(i,500) = 0 THEN COMMIT; END IF;

Oracle存储过程for语句用法,并且每500条提交一次。

create or replace procedure PS_TEST IS
begin
       FOR i IN 1..10000
       LOOP
         --delete from test where name=to_char(i);
-


       INSERT INTO test VALUES(to_char(i),i+2);
       IF MOD(i,500) = 0 THEN
       COMMIT;
       END IF;
       END LOOP;
       COMMIT;
end PS_TEST;
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn