Loop循环语句:
1:语法
LOOP
要执行的语句;
EXIT WHEN <条件语句> /*条件满足,退出循环语句*/
END LOOP;
其中:EXIT WHEN 子句是必须的,否则循环将无法停止。
2:实例
declare
int number(2) :=0;
begin
loop
int :=int+1;
dbms_output.put_line(‘int的值为:‘|| int);
exit when int =10;
end loop;
end
时间: 2024-10-24 02:53:07