What does delete from table where NULL = NULL mean?
delete from table where NULL = NULL
It punishes people who have ANSI_NULLS set to off in their database :)
Since NULL does not equal NULL, this statement will do nothing. It equals:
DELETE FROM TABLE WHERE 0