Thursday, May 17, 2012

Repeat until loop : Repeat until « Procedure Function « SQL / MySQL

Repeat until loop : Repeat until « Procedure Function « SQL / MySQL


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)

          


More than 3 requests, I'll translate this to Chinese.
超过3个请求,我就会把这篇文章翻译成中文。

No comments: