Indexes that exclude NULL keys
You can exclude NULL keys from an index to reduce the size of an index and improve the performance of an index.
Some table values are never used in queries and are unnecessary in an index. NULL key columns add to index size and can reduce the performance of index scans. If you exclude NULL key columns from an index, Db2 only creates index entries for key columns that are not null. You can specify that an index excludes null keys when you create an index with the CREATE INDEX statement.
A NULL key in an index is not the same as a null foreign key.