what does “delete from table where NULL = NULL” means?

前端 未结 8 1677
抹茶落季
抹茶落季 2021-02-18 12:35

What does delete from table where NULL = NULL mean?

8条回答
  •  不要未来只要你来
    2021-02-18 13:20

    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.

提交回复
热议问题