FOR i IN (1 TO 5) LOOP IF i = 5 THEN EXIT; ELSE CONTINUE; END LOOP;
FOR i IN (1 TO 5) LOOP EXIT WHEN i = 5; END LOOP;