Question : Merge field together in mysql

HI EXPERTS      
this is my query statement

select a ||''||b||''||c from table

data type for a,b,c is int but the output i received for all the record is 11||11||11
why?


Answer : Merge field together in mysql

Try
1:
select concat(a,' ',b,' ',c) from table
Open in New Window Select All
Random Solutions  
 
programming4us programming4us