This tutorial explains how to use the LOOP statement in MySQL with syntax and examples.
In MySQL, the LOOP statement is used when you are not sure how many times you want the loop body to execute and you want the loop body to execute at least once.
The syntax for the LOOP statement in MySQL is:
Optional. It is a name associated with the LOOP. You use the label_name when executing an ITERATE statement or LEAVE statement.
The statements of code to execute each pass through the LOOP.
Let's look at an example that shows how to use the LOOP statement in MySQL:
In this MySQL LOOP example, the ITERATE statement would cause the loop to repeat while income is less than 4000. Once income is greater than or equal to 4000, the LEAVE statement would terminate the LOOP.