break

March 6th, 2008 Posted in Controls

break Terminate execution of or loop.
break terminates the execution of and loops.
In nested loops, break exits from the innermost loop only.

you use break outside of a or loop in a
script or function, it terminates the script or function at
that point. break is executed in an , -CASE, or
TRY-CATCH statement, it terminates the statement at that point.

Related posts

Leave a Reply

You must be logged in to post a comment.