mysql中的空值问题

MySQL的查询如果需要用到空值的情况下,where后面的条件就需要注意了

 

MySQL中的表示空值的方法:is null 和 is not null

比如:select * from user where id = null -->这就是错误的写法

应该写成:select * from user where id is null

posted @ 2018-12-02 10:28  caotao0918  阅读(534)  评论(0编辑  收藏  举报