WHILE STATEMENT
Description
Grammar Syntax
[ <<label>> ]
WHILE boolean-expression LOOP
statements
END LOOP [ label ];Sample Source Patterns
Input
while counter < 5 loop
Select AValue from ATable;
end loop;WHILE (counter < 5) loop
Select AValue from ATable;
end loop;Known Issues
Related EWIs
Last updated
Was this helpful?