I use the following SQL to concatenate several database columns from one table into one column in the result set:
SELECT (field1 + \'\' + field2 + \'\' + field
If both Column are numeric Then Use This code
Just Cast Column As Varchar(Size)
Example:
Select (Cast(Col1 as Varchar(20)) + '-' + Cast(Col2 as Varchar(20))) As Col3 from Table