oracle语句中“<< >>”是什么意思?
oracle语句中“<< >>”是什么意思?
日期:2019-09-06 07:59:13 人气:1
plsql(oracle的编程语言)的标记符号,常用来跳出循环。
使用goto可以跳到标记>的位置,举例如下:
for i in 1..100 loop
if i > 10 then
goto end_loop;
end if;
end loop;
>
dbms_output.put_line('loop 循环了10次提前结束了!' );