PL/SQL 基础知识

pl/sql中的四种循环

loop 
exit when c_page >10;
c_page := c_page+1;
dbms_output.put_line(‘c_page : ‘ || c_page);
end loop;

while c_page<20 loop

c_page := c_page+1;
dbms_output.put_line(‘c_page : ‘ || c_page);

end loop;

<<repeat_loop>>
dbms_output.put_line(‘repeat_loop : ‘);
c_page:= c_page - 1;
if c_page> 10 then
goto repeat_loop;
end if;

for c_page in reverse 1..100 loop

dbms_output.put_line(‘for loop : ‘ || c_page);
end loop;


PL/SQL 基础知识,布布扣,bubuko.com

PL/SQL 基础知识

上一篇:centos6.5 rpm安装mysql5.6.19操作及步骤


下一篇:Mysql------InnoDB----使用B+树