LOOP
Translation reference to convert Oracle LOOP statement to Snowflake Scripting
Description
With each iteration of the basic
LOOPstatement, its statements run and control returns to the top of the loop. TheLOOPstatement ends when a statement inside the loop transfers control outside the loop or raises an exception. (Oracle PL/SQL Language Reference BASIC LOOP Statement)
LOOP statement... END LOOP [ label ] ;LOOP
<statement>;
[ <statement>; ... ]
END LOOP [ <label> ] ;Oracle BASIC LOOP behavior can also be modified by using the statements:
GOTO
Sample Source Patterns
Loop simple case
This case is functionally equivalent.
Oracle
Snowflake Scripting
Known Issues
No issues were found.
Related EWIs
No related EWIs.
Last updated