Real-world data is never complete—there are always holes.
Databases represent these holes using special value called null
.
null
is not zero, False
, or the empty string;
it is a one-of-a-kind value that means "nothing here".
Dealing with null
requires a few special tricks
and some careful thinking.
To start,
let's have a look at the Visited
table.
There are eight records,
but #752 doesn't have a date—or rather,
its date is null:
In [1]:
%load_ext sqlitemagic
In [2]:
%%sqlite survey.db
select * from Visited;
Null doesn't behave like other values. If we select the records that come before 1930:
In [3]:
%%sqlite survey.db
select * from Visited where dated<'1930-00-00';
we get two results, and if we select the ones that come during or after 1930:
In [4]:
%%sqlite survey.db
select * from Visited where dated>='1930-00-00';
we get five,
but record #752 isn't in either set of results.
The reason is that
null<'1930-00-00'
is neither true nor false:
null means, "We don't know,"
and if we don't know the value on the left side of a comparison,
we don't know whether the comparison is true or false.
Since databases represent "don't know" as null,
the value of null<'1930-00-00'
is actually null
.
null>='1930-00-00'
is also null
because we can't answer to that question either.
And since the only records kept by a where
are those for which the test is true,
record #752 isn't included in either set of results.
Comparisons aren't the only operations that behave this way with nulls.
1+null
is null
,
5*null
is null
,
log(null)
is null
,
and so on.
In particular,
comparing things to null with = and != produces null:
In [5]:
%%sqlite survey.db
select * from Visited where dated=NULL;
In [6]:
%%sqlite survey.db
select * from Visited where dated!=NULL;
To check whether a value is null
or not,
we must use a special test is null
:
In [7]:
%%sqlite survey.db
select * from Visited where dated is NULL;
or its inverse is not null
:
In [8]:
%%sqlite survey.db
select * from Visited where dated is not NULL;
Null values cause headaches wherever they appear. For example, suppose we want to find all the salinity measurements that weren't taken by Dyer. It's natural to write the query like this:
In [9]:
%%sqlite survey.db
select * from Survey where quant='sal' and person!='lake';
but this query filters omits the records
where we don't know who took the measurement.
Once again,
the reason is that when person
is null
,
the !=
comparison produces null
,
so the record isn't kept in our results.
If we want to keep these records
we need to add an explicit check:
In [10]:
%%sqlite survey.db
select * from Survey where quant='sal' and (person!='lake' or person is null);
We still have to decide whether this is the right thing to do or not. If we want to be absolutely sure that we aren't including any measurements by Lake in our results, we need to exclude all the records for which we don't know who did the work.
Write a query that sorts the records in Visited
by date,
omitting entries for which the date is not known
(i.e., is null).
What do you expect the query:
select * from Visited where dated in ('1927-02-08', null);
to produce? What does it actually produce?
Some database designers prefer to use
a sentinel value
to mark missing data rather than null
.
For example,
they will use the date "0000-00-00" to mark a missing date,
or -1.0 to mark a missing salinity or radiation reading
(since actual readings cannot be negative).
What does this simplify?
What burdens or risks does it introduce?