What is the difference between NULL and NOT NULL? And when should they be used?
|
|
NULL means you do not have to provide a value for the field... NOT NULL means you must provide a value for the fields. For example, if you are building a table of registered users for a system, you might want to make sure the user-id is always populated with a value (i.e. NOT NULL), but the optional spouses name field, can be left empty (NULL) |
|||
When creating a table or adding a column to a table, you need to specify the column value optionality using either
That is determined by your business rules. |
|||
|
|
|
Fields that aren't |
|||
|
|
|
I would suggest
Having fields which don't have a meaningful meaning for NULL nullable is likely to introduce bugs, when nulls enter them by accident. Using NOT NULL prevents this. The commonest reason for NULL fields is that you have a foreign key field which is options, i.e. not always linked, for a "zero or one" relationship. If you find you have a table with lots of columns many of which can be NULL, that starts sounding like an antipattern, consider whether vertical partitioning makes more sense in your application context :) There is another useful use for NULL - making all the columns in an index NULL will stop an index record being created for that row, which optimises indexes; you may want to index only a very small subset of rows (e.g. for an "active" flag set on only 1% or something) - making an index which starts with a column which is usually NULL saves space and optimises that index. |
|||
|
|
|
|
|||
|
|
|
Also note that NULL is not equal to anything else, even not to NULL itself. For example:
This definition of NULL is very useful when you need a unique key on a column that is partially filled. In such case you can just leave all the empty values as NULL, and it will not cause any violation of the uniqueness key, since NULL != NULL. Here is an example of how you can see if something is NULL:
|
|||
|
|