Assign value to a variable with set command : Set : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » Set »

 

Assign value to a variable with set command


mysql>
mysql>
mysql> delimiter $$
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->     DECLARE my_integer     INT;           /* 32-bit integer */
    ->
    ->     set my_integer = 12;
    ->
    ->     select 'my_integer = ' + 12;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+----------------------+
'my_integer = ' + 12 |
+----------------------+
|                   12 |
+----------------------+
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
» Set