What does delete from table where NULL = NULL mean?
delete from table where NULL = NULL
That will delete nothing from the table. NULL does not equal NULL.
Now
delete from table where NULL is NULL
would delete all rows from the table.