Concatenate string with integer : Set : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » Set »

 

Concatenate string with integer


 
mysql>
mysql> delimiter $$
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->
    ->   DECLARE a INT;
    ->   DECLARE b VARCHAR(20);
    ->   DECLARE c INT;
    ->
    ->   SET a=99;
    ->   SET b="AAA";
    ->   SET c=CONCAT(a," ",b);
    ->   SELECT c;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql>
mysql> delimiter ;
mysql>
mysql> call myProc();
+------+
| c    |
+------+
|   99 |
+------+
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

SQL / MySQL

 Navioo Procedure Function
» Set