Question
Combine First and Last Name as FullName
I'd like to write a statement that combines the First Name
and Last Name
as FullName (with a space separating the two).
This doesn't work:
SELECT ContactID, LastName + ', ' + FirstName AS FullName
Any ideas?
as FullName (with a space separating the two).
This doesn't work:
SELECT ContactID, LastName + ', ' + FirstName AS FullName
Any ideas?
