WHILE Statement : While : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » While »

 

WHILE Statement


 
mysql>
mysql>
mysql> DELIMITER //
mysql> CREATE FUNCTION myFunction (quantity INT(10)) RETURNS INT(10)
    -> BEGIN
    ->
    ->     WHILE quantity MOD 12 DO
    ->     SET quantity = quantity + 1;
    ->     END WHILE;
    ->
    ->     RETURN quantity;
    ->
    -> END
    -> //
Query OK, rows affected (0.00 sec)

mysql> DELIMITER ;
mysql>
mysql> select myFunction(10);
+----------------+
| myFunction(10|
+----------------+
|             12 |
+----------------+
row in set (0.00 sec)

mysql>
mysql> select myFunction(24);
+----------------+
| myFunction(24|
+----------------+
|             24 |
+----------------+
row in set (0.00 sec)

mysql>
mysql>
mysql> drop function myFunction;
Query OK, rows affected (0.00 sec)

mysql>

        



Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Procedure Function
» While