I am trying to set this col but I get an error:

FirstName + (CASE WHEN LEN(FirstName + LastName) > 0 THEN ' ' ELSE '') + LastName
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You should close CASE with END and also, to my opinion, the following value will be better:

FirstName + (CASE WHEN LEN(FirstName) > 0 AND LEN(LastName) > 0 THEN ' ' ELSE '' END) + LastName
link|improve this answer
Good point about counting the chars and sum them vs. concatenating strings which cost more performance. – Shimmy Aug 2 '09 at 22:59
feedback
FirstName + (CASE WHEN LEN(FirstName + LastName) > 0 THEN ' ' ELSE '' end) + LastName

missing the end

link|improve this answer
But what if last name length was 0 ? – Wahid Bitar Jan 23 '10 at 15:27
I was just addressing the OP's syntax problem, not his approach. – cmsjr Jan 24 '10 at 1:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.