Call buildin math function in your procedure : Buildin Functions : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » Buildin Functions »

 

Call buildin math function in your procedure


 
mysql> delimiter $$
mysql>
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->     DECLARE my_big_integer     int DEFAULT 2;
    ->
    ->     SET my_big_integer=POWER(my_big_integer,3);
    ->
    ->     select my_big_integer;
    -> END$$
Query OK, rows affected (0.00 sec)

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

Query OK, rows affected (0.00 sec)

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
» Buildin Functions