Once other thing you are probably best doing as well is using the IsNull
operator, any nulls in either column will make the whole statement return a
null (A NULL + a string always = NULL)...
select IsNull(FName, '') + ' ' + IsNull(LName, '') as fullname
That is assuming you are using MS SQL?