Repeat until loop : Repeat until : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » Repeat until »

 

Repeat until loop


mysql>
mysql> delimiter //
mysql> create procedure test_repeat (IN in_count INT)
    -> BEGIN
    ->     declare count INT default 0;
    ->
    ->     increment: repeat
    ->         set count = count + 1;
    ->         select count;
    ->         until count > 10
    ->     end repeat increment;
    ->
    -> END
    -> //
Query OK, rows affected (0.00 sec)

mysql>
mysql> delimiter ;
mysql>
mysql> call test_repeat(10);
+-------+
| count |
+-------+
|     |
+-------+
row in set (0.00 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.00 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|     |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|    10 |
+-------+
row in set (0.01 sec)

+-------+
| count |
+-------+
|    11 |
+-------+
row in set (0.01 sec)

Query OK, rows affected (0.01 sec)

mysql>
mysql> drop procedure test_repeat;
Query OK, rows affected (0.00 sec)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Procedure Function
» Repeat until