hey all,
I' ve an sql pb on Mysql database. i need to concatenate 2 varchar column.
The table looks like :
Field Type Collation Attributes Null
-------------------------------------------------------
appli varchar(30) utf8_general_ci No
boom varchar(5) utf8_general_ci No
critical varchar(3) utf8_general_ci No
perim varchar(40) utf8_general_ci No
i need ton concatenate "Appli" & "boom" columns.
examlple of values for thoses column:
Col1: Col2
---------------
toTo tata
and i want to get :
Col1:
--------
toto,tata
can anyone tell me how to do that ?
i already tried the following syntax but the reslut is a Numeric field :/ with the Value "0".
SELECT (tb_applis.appli + "," + tb_applis.boom) AS Boom
FROM tb_applis, tb_serveurs t2
WHERE tb_applis.appli = t2.applis
Ty
Labigre