Skip to content
Advertisement

Using ISNULL when adding NULL to varchar

Whilst experimenting with MSSQL I came across some behaviour I cannot explain.

I was looking at what happens to a NULL value when it is added to a varchar, and when I do the following query:

I get the result ‘te’. Similarly if I change the word test for any other word I only get the first two letters. If I increase the number of spaces in the + ‘ ‘ I get extra letters in my result (so NULL + ‘[two spaces]’ gives me ‘tes’). Any ideas what is going on?

If I declare a variable and set it to NULL e.g.

then I get the result ‘test’ (as I would expect).

Advertisement

Answer

Use COALESCE. ISNULL takes the first NON-NULL data type, and in this case because it hasn’t been declared, you get a VARCHAR(1) for the NULL and then it becomes a VARCHAR(2) when you add the space (this is still NULL when evaluated but SQL Server makes an assumption before that step). In some cases the default for varchar without length is 1, and in others it is 30. I’ll let you guess which one is being used here.

Results:

You can see this explicitly by:

Results:

In almost all cases, I prefer COALESCE over ISNULL. I explain why (and where the exceptions exist) in this tip:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement