vote up 0 vote down star

I have a table with three fields, FirstName, LastName and Email.

Here's some dummy data:

FirstName | LastName | Email
Adam        West       adam@west.com
Joe         Schmoe     NULL

Now, if I do:

SELECT CONCAT(FirstName, LastName, Email) as Vitals FROM MEMBERS

Vitals for Joe is null, as there is a single null field. How do you overcome this behaviour? Also, is this the default behaviour in MS SQL Server?

flag

5 Answers

vote up 11 vote down check

Try

ISNULL(FirstName, '<BlankValue>')

So,

CONCAT(ISNULL(FirstName,''),ISNULL(LastName,''),ISNULL(Email,''))

would return the same thing without the null issue (and a blank string where nulls should be).

link|flag
Excellent, thank you! – rixth Jun 24 at 0:05
vote up 2 vote down

Stefan's answer is correct. To probe a little bit deeper you need to know that NULL is not the same as Nothing. Null represents the absence of a value, or in other words, not defined. Nothing represents an empty string which IS in fact a value.

Undefined + anything = undefined

Good database tidbit to hold onto!

link|flag
vote up 2 vote down

SQL Server does not have a CONCAT function.

In the default SQL Server behavior, NULLs propagate through an expression.

In SQL Server, one would write:

SELECT FirstName + LastName + Email as Vitals FROM MEMBERS

If you need to handle NULLs:

SELECT ISNULL(FirstName, '') + ISNULL(LastName, '') + ISNULL(Email, '') as Vitals FROM MEMBERS
link|flag
vote up 1 vote down
SELECT ISNULL(FirstName,'')+ISNULL(LastName,'')+ISNULL(Email,'') as Vitals FROM MEMBERS

is recommended, but if you are really hooked on CONCAT, wrap it in {fn } and you can use the ODBC function like:

SELECT {fn CONCAT(ISNULL(FirstName,''), ISNULL(LastName,''), ISNULL(Email,''))} as Vitals FROM MEMBERS

If you need first<space>last but just last when first is null you can do this:

ISNULL(FirstName+' ','') + ISNULL(LastName,'')

I added the space on firstname which might be null -- that would mean the space would only survive if FirstName had a value.

To put them all together with a space between each:

RTRIM(ISNULL(Firstname+' ','') + ISNULL(LastName+' ','') + ISNULL(Email,''))
link|flag
Wouldn't the space on FirstName make the value non-null? – rixth Jun 28 at 20:13
No. NULL + anything is NULL. – Hafthor Jun 29 at 17:24
vote up 1 vote down

You can always use the CONCAT_NULL_YIELDS_NULL setting..

just run the SET CONCAT_NULL_YIELDS_NULL OFF and then all null concatenations will result in text and not null..

link|flag

Your Answer

Get an OpenID
or

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