Call buildin math function in your procedure : Buildin Functions « Procedure Function « MySQL Tutorial






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, 0 rows affected (0.00 sec)

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

Query OK, 0 rows affected (0.00 sec)

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

mysql>
mysql>








11.32.Buildin Functions
11.32.1.Check MySQL version
11.32.2.Call buildin math function in your procedure
11.32.3.Use Build-in SUM function in a procedure
11.32.4.Using String functions in a user-defined function
11.32.5.Return the file size by using the LOAD_FILE function