How to Concat two column in a select statement sql server 2005?
Here is my statement Select FirstName,secondName from Table...
Select FirstName,secondName from Table
Now i did try con
If one of your fields is numeric then you can cast it to a string as follows:
string
SELECT FirstName + ISNULL(' ' + SecondName, '') + ' age(' + CONVERT(nvarchar,age) + ')' from Table