Possible duplicate:& lsquo; CONTINUE & rsquo; keyword in Oracle 10g PL / SQL
I am using Oracle 9i and I want to use the continue statement or its equivalent in PL / SQL. So in oracle 9i there is a keyword called continue. If not, let me know about this solution.
The CONTINUE statement was added in Oracle 11G; it is not available in previous versions. The solution would be to use GOTO:
loop if something then goto continue_label; end if; ... <<continue_label>> null; end loop;
Source: https://habr.com/ru/post/1310522/More articles:XML CodeIgniter output in view - xmlLog4j exception when sending mail using plain java mail - javaHow should existing data exist if the structure of an object has been modified or deleted by GAE? - google-app-engineA checkbox does not change when you click on it - jqueryValue from a resource set as a template in Date format - javaSDL / Pygame does not load PNG images cx_Freeze - pythonShow invalid HTML "Is it safe?" - htmlWhat are the advantages of a classic structure over a prototype? - javascriptJava Date Processing - javaDjango: multiple-to-many relationship query - djangoAll Articles