BREAK [label];
Break statement
A BREAK
statement is used inside a LOOP
or WHILE
construct to break from the loop.
It must be used inside a LOOP
or WHILE
statement.
Usage
Syntax rules
-
If the label is specified, it must exist on a containing
LOOP
orWHILE
statement. -
If no label is specified, the statement will affect the closest containing
LOOP
orWHILE
statement.