Boolean operator : Operator : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » Operator »

 

Boolean operator


 
mysql> delimiter $$
mysql>
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->         DECLARE a INT DEFAULT 2;
    ->         DECLARE b INT DEFAULT 3;
    ->         DECLARE c FLOAT;
    ->
    ->         IF NOT (a=bTHEN
    ->                 SELECT 'a is not equal to b';
    ->         END IF;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql>
mysql> delimiter ;
mysql> call myProc();
+---------------------+
| a is not equal to b |
+---------------------+
| a is not equal to b |
+---------------------+
row in set (0.02 sec)

Query OK, rows affected (0.02 sec)

mysql> drop procedure myProc;
Query OK, rows affected (0.00 sec)

mysql>

        



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Procedure Function
» Operator