Home > Database > Mysql Tutorial > body text

Oracle存储过程for语句用法

WBOY
Release: 2016-06-07 17:58:59
Original
1232 people have browsed it

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;
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!