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次提前结束了!' );