IF statement in a LOOP statement : IF statement : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » IF statement »

 

IF statement in a LOOP statement


 
mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->
    ->     DECLARE i int;
    ->     SET i=0;
    ->     loop1: REPEAT
    ->          SET i=i+1;
    ->          IF MOD(i,2)<>THEN /*Even number - try again*/
    ->             SELECT CONCAT(i," is an odd number");
    ->          END IF;
    ->     UNTIL i >= 10
    ->     END REPEAT;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql>
mysql> delimiter ;
mysql> call myProc();
+-------------------------------+
| CONCAT(i," is an odd number"|
+-------------------------------+
is an odd number            |
+-------------------------------+
row in set (0.00 sec)

+-------------------------------+
| CONCAT(i," is an odd number"|
+-------------------------------+
is an odd number            |
+-------------------------------+
row in set (0.33 sec)

+-------------------------------+
| CONCAT(i," is an odd number"|
+-------------------------------+
is an odd number            |
+-------------------------------+
row in set (0.33 sec)

+-------------------------------+
| CONCAT(i," is an odd number"|
+-------------------------------+
is an odd number            |
+-------------------------------+
row in set (0.34 sec)

+-------------------------------+
| CONCAT(i," is an odd number"|
+-------------------------------+
is an odd number            |
+-------------------------------+
row in set (0.34 sec)

Query OK, rows affected (0.34 sec)

mysql> drop procedure myProc;
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
» IF statement