참고
MySQL Documentation 13.6.5.6 REPEAT Statement
설명
- REPEAT문 안의 statement_list들은 search_condition이 true가 될 때 까지 반복 수행된다.
- REPEAT문 안의 statement_list는 반드시 한 번은 실행된다.
- statement_list는 하나 이상의 statement로 구성되며 세미콜론(;)으로 구분된다.
syntax
[begin_label:] REPEAT
statement_list
UNTIL search_condition
END REPEAT [end_label]
예시
mysql> delimiter //
mysql> CREATE PROCEDURE dorepeat(p1 INT)
BEGIN
SET @x = 0;
REPEAT
SET @x = @x + 1;
UNTIL @x > p1 END REPEAT;
END
//
Query OK, 0 rows affected (0.00 sec)
mysql> CALL dorepeat(1000)//
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT @x//
+------+
| @x |
+------+
| 1001 |
+------+
1 row in set (0.00 sec)