CONCAT(str1,str2,...) : CONCAT : String Functions MySQL TUTORIALS


MySQL TUTORIALS » String Functions » CONCAT »

 

CONCAT(str1,str2,...)


A numeric argument is converted to its equivalent binary string form.

SELECT CONCAT(CAST(int_col AS CHAR), char_col);
mysql>
mysql>
mysql>
mysql> SELECT CONCAT('My', 'S''QL');
+-------------------------+
| CONCAT('My', 'S''QL') |
+-------------------------+
| MySQL                   |
+-------------------------+
row in set (0.00 sec)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo String Functions
» CONCAT