EXIT
Description
Grammar Syntax
EXIT [ label ] [ WHEN boolean-expression ];Sample Source Patterns
Input
EXIT;
EXIT ablock; -- causes exit from the ablock loop block
LOOP
-- some computations
EXIT WHEN count > 0;
END LOOP;EXIT;
EXIT ablock; -- causes exit from the ablock loop block
LOOP
-- some computations
IF (count > 0) THEN
EXIT;
END IF;
END LOOP;
Known Issues
Related EWIs
Last updated
Was this helpful?