2010-05-21 43 views

回答

7

CONTINUE语句被添加到Oracle 11G中,它在以前的版本中不可用。一个解决方案将使用GOTO:

loop 
    if something then 
     goto continue_label; 
    end if; 
    ... 
    <<continue_label>> null; 
end loop;