CASE WHEN with ELSE : CASE : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » CASE »

 

CASE WHEN with ELSE


 
mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc(id int)
    -> BEGIN
    ->     CASE
    ->          WHEN id < 2  THEN
    ->               select 'less than 2';
    ->          WHEN id > and id < THEN
    ->               select 'greater than and less than 5';
    ->          ELSE
    ->               select 'ELSE';
    ->     END CASE;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql>
mysql> delimiter ;
mysql>
mysql> call myProc(1);
+-------------+
| less than |
+-------------+
| less than |
+-------------+
row in set (0.00 sec)

Query OK, rows affected (0.01 sec)

mysql>
mysql> call myProc(3);
+--------------------------------+
| greater than and less than |
+--------------------------------+
| greater than and less than |
+--------------------------------+
row in set (0.00 sec)

Query OK, rows affected (0.00 sec)

mysql>
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
» CASE