Math operators : Set : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » Set »

 

Math operators


 
mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->         DECLARE a INT DEFAULT 2;
    ->         DECLARE b INT DEFAULT 3;
    ->         DECLARE c FLOAT;
    ->
    ->         SET c=a+b; SELECT 'a+b=',c;
    ->         SET c=a/b; SELECT 'a/b=',c;
    ->         SET c=a*b; SELECT 'a*b=',c;
    ->
    -> END$$
Query OK, rows affected (0.00 sec)

mysql>
mysql> delimiter ;
mysql>
mysql> call myProc();
+------+------+
| a+b= | c    |
+------+------+
| a+b= |    |
+------+------+
row in set (0.00 sec)

+------+----------+
| a/b= | c        |
+------+----------+
| a/b= | 0.666667 |
+------+----------+
row in set (0.02 sec)

+------+------+
| a*b= | c    |
+------+------+
| a*b= |    |
+------+------+
row in set (0.02 sec)

Query OK, rows affected (0.02 sec)

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

mysql>
mysql>

        



Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Procedure Function
» Set