CONTINUE
Translation reference to convert Oracle CONTINUE statement to Snowflake Scripting
Last updated
Translation reference to convert Oracle CONTINUE statement to Snowflake Scripting
Last updated
The
CONTINUE
statement exits the current iteration of a loop, either conditionally or unconditionally, and transfers control to the next iteration of either the current loop or an enclosing labeled loop. ()
Code skips the INSERT
statement by using CONTINUE
.
This case is functionally equivalent.
Code skips inserting even numbers by using CONTINUE
.
Code skips line 19, and the inner loop is only executed once because the CONTINUE
is always jumping to the outer loop using the label.
This case is functionally equivalent applying the same process as the previous sample.
No issues were found.
: Label declaration not supported.