I\'m migrating a TSQL stored procedure to PL/SQL and have encountered a problem - the lack of a CONTINUE keyword in Oracle 10g.
I\'ve read that Oracle 11g has this a
Not exactly elegant, but simple:
DECLARE done BOOLEAN; BEGIN FOR i IN 1..50 LOOP IF done THEN NULL; ELSE ; END IF; END LOOP; END;