![]() |
|
|
By: Greg Robidoux | Read Comments (4) | Print Greg is the President of Edgewood Solutions and a co-founder of MSSQLTips.com. Related Tips: 1 | 2 | 3 | 4 | More |
|
Problem
When building database tables you are faced with the decision of whether to allow NULL values or to not allow NULL values in your columns. By default SQL Server sets the column value to allow NULL values when creating new tables, unless other options are set. This is not necessarily a bad thing, but dealing with NULL values especially when joining tables can become a challenge. Let's take a look at this issue and how this can be resolved.
Solution
In most cases your columns in your tables probably allow NULL values unless you consciously changed them when you created a table or changed the default setting for your database by using the SET ANSI_NULL_DEFAULT OFF and SET ANSI_NULL_DFLT_ON OFF option. These settings change the behavior of how a table is created if you do not specify NULL or NOT NULL when creating a table.
The following examples show you how a table would get created differently with each of these options, but by default SQL Server sets columns to allow nulls.
Example 1: When these two options are OFF the default nullable value is set to no, meaning no null values are acceptable.
| ALTER DATABASE AdventureWorks SET ANSI_NULL_DEFAULT OFF; GO SET ANSI_NULL_DFLT_ON OFF; GO CREATE TABLE Table1 (a TINYINT); GO sp_help Table1 GO |
The screen shot below shows that the column does not allow NULLs.

Example 2: When these two options are ON the default nullable value is set to yes, meaning null values are acceptable.
| ALTER DATABASE AdventureWorks SET ANSI_NULL_DEFAULT ON; GO SET ANSI_NULL_DFLT_ON ON; GO CREATE TABLE Table2 (a TINYINT); GO sp_help Table2 GO |
The screen shot below shows that the this column does allow NULLs.

So now that we have that covered let's get down to the issue at hand. So based on how tables and columns are setup and how data is stored you may run into an issue where you have data stored in tables that have NULL values and you need to join on these values. Sounds pretty easy, but let's see what happens when this occurs.
Setup Test
First let's create two tables and load some sample data. (This is not a very practical example, but it does help illustrate the issue.)
| CREATE TABLE [dbo].[CarModels]( [Make] [varchar](50) NULL, [Model] [varchar](50) NULL, [Trim] [varchar](50) NULL ) ON [PRIMARY] GO CREATE TABLE [dbo].[Orders]( INSERT INTO dbo.Orders VALUES ('Nissan','Altima','2-door 2.5 S Coupe') INSERT INTO dbo.CarModels VALUES ('Nissan','Altima','') |
Selecting data
The first thing we will do is show the data in these two tables. The idea here is that we want to join the tables based on Make, Model and Trim. For most of the records there is some value, but there are a few records where the Trim value is NULL.
| SELECT * FROM dbo.Orders a SELECT * |

The first query does a straight join of these tables based on all three columns.
| SELECT * FROM dbo.Orders a INNER JOIN dbo.CarModels b ON a.Make = b.Make AND a.Model = b.Model AND a.Trim = b.Trim |
The result of the above query matches only three of the four records from the Orders table. The records that have a NULL value for Trim do not show up in the resultset.

This next example introduces the ISNULL function in the join clause. The ISNULL function takes two parameters, the first is the value to interrogate to see if it is NULL and it if is NULL the second parameter specifies what the value should be converted to. So in this example if any value is NULL it will be converted to a space ''.
| SELECT * FROM dbo.Orders a INNER JOIN dbo.CarModels b ON a.Make = b.Make AND a.Model = b.Model AND isnull(a.Trim,'') = isnull(b.Trim,'') |
In the results below we can see that we now have more rows, but one of the issues we are facing is that there are also values of space in the table and therefore we are picking up additional joins that we do not want. The rows that should not be included are highlighted below.

To take this a step further we are using the ISNULL function again, but this time we are converting the NULL values to '999999'. This is a value that we know does not exist in our table and therefore will not cause any unwanted joins.
| SELECT * FROM dbo.Orders a INNER JOIN dbo.CarModels b ON a.Make = b.Make AND a.Model = b.Model AND isnull(a.Trim,'999999') = isnull(b.Trim,'999999') |
Here is our final result with the four rows we are expecting.

Summary
As we have seen from the above examples joining NULL values does not work. Even though you have two NULL values SQL Server does not treat these as the same value. Internally a value of NULL is an unknown value and therefore SQL Server does not equate an unknown value being equal to another unknown value. Another design decision is to not allow NULL values and therefore you will not run into these issues.
Next Steps
| Share: | Share | Tweet |
|
![]() |
![]() |
Free SQL Server Learning |
| Wednesday, March 05, 2008 - 8:45:05 AM - jaybutler | Read The Tip |
|
The final version of the query is a performance problem waiting to happen. Using 'expression operator expression' constructs will not allow SQL Server's optimizer to use and indexes on the Trim column. The condition has to be restated as 'column operator column' or 'column operator expression. That would turn your:
into something like this:
This also avoids the potential problem of choosing a value you thought to be out of range that eventually is used. Although the potential performance problem was mentioned in the notes at the end of the column, the article itself should have ended with the best SQL rather than the most convenient. |
|
| Friday, April 04, 2008 - 7:46:18 AM - admin | Read The Tip |
|
jaybutler, Thank you for the feedback and the alternative approach. Thank you, |
|
| Thursday, October 14, 2010 - 8:39:35 AM - Joe Celko | Read The Tip |
|
I also think this is a bad idea. What we need is the AQNSI/ISO Standard SQL:2003 "IS DISTINCT FROM" comparison operator instead of compiler modifications on the fly. |
|
| Thursday, October 14, 2010 - 9:05:37 AM - Greg Robidoux | Read The Tip |
|
I think overall, joining on NULL values is a bad idea. The better option is to not allow NULL values and this wouldn't be an issue in the first place. Life would be much easier if we never took shortcuts. |
|
|
privacy | disclaimer | copyright | advertise | about authors | contribute | feedback | giveaways | user groups Some names and products listed are the registered trademarks of their respective owners. Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com |