WHILE
Translation reference to convert Oracle WHILE statement to Snowflake Scripting
Description
The
WHILELOOPstatement runs one or more statements while a condition isTRUE. (Oracle PL/SQL Language Reference WHILE Statement)
WHILE boolean_expression
LOOP statement... END LOOP [ label ] ;WHILE ( <condition> ) { DO | LOOP }
<statement>;
[ <statement>; ... ]
END { WHILE | LOOP } [ <label> ] ;Oracle WHILE behavior can also be modified by using the statements:
GOTO
Sample Source Patterns
While simple case
This case is functionally equivalent.
Oracle
Snowflake Scripting
Known Issues
No issues were found.
Related EWIs
No related EWIs.
Last updated