Declare variable with default value : Default : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » Default »

 

Declare variable with default value


mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->     DECLARE my_pi          FLOAT          /* Floating point number*/
    ->             DEFAULT 3.1415926;            /* initialized as PI */
    ->
    ->     select "my_pi="+my_pi;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+----------------+
"my_pi="+my_pi |
+----------------+
3.141592502594 |
+----------------+
row in set (0.00 sec)

Query OK, rows affected, warning (0.00 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

MySQL TUTORIALS

 Navioo Procedure Function
» Default