Concatenate string with integer : Set « Procedure Function « MySQL Tutorial






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

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

Query OK, 0 rows affected, 1 warning (0.00 sec)

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

mysql>
mysql>








11.12.Set
11.12.1.Assign value to a variable with set command
11.12.2.Concatenate string with integer
11.12.3.Math operators
11.12.4.Using Set to declare variable in a procedure