2010-05-21 57 views

回答

7

CONTINUE語句被添加到Oracle 11G中,它在以前的版本中不可用。一個解決方案將使用GOTO:

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