My favorite database feature: the “Collapsing Index”
One of the interesting features of Oracle is if an entry in an index would only have nulls in it, then that entry isn’t created. A simple test can verify this assertion. SQL> CREATE TABLE null_test 2 ( 3 id INTEGER NOT NULL, 4 dummy_string VARCHAR2(10) 5 ); Table created. SQL> INSERT INTO null_test(id, dummy_string)…