Make sure you dont have any NULL values appearing in any of your fields as concatenation with null yields nulls while CONCAT_NULL_YIELDS_NULL is ON. So its better to do like this to avoid NULLs in result SELECT COALESCE(FirstName,'') + " , " + COALESCE(Lastname,'') as fullname FROM StaffList
Also you dont really require the braces around concatenated field.