mysql中is null 与 = null
Posted 慕橙-abby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中is null 与 = null相关的知识,希望对你有一定的参考价值。
==null与is null老是弄错,现在总结一下工作中遇到过的错误。
1、在查询的时候
select * from user where name is null;
select * from user where name is not null;
2、在更新的时候
update user set name = null where id = 1;
3、count(1)与limit无法同时使用
select count(1) from user where name is not null limit 1;
返回的是姓名不能于空的用户数量,与limit无关。
4、
场景:每个用户有一个备注属性,现查找出备注不为“加一份饭”的用户(包括没有填写备注的),此备注默认为空
,有以下几个选项:“加一份饭”,“要加辣”,“少放油”
select * from user where ifnull(remark, ‘‘ ") != "加一份饭 "
注意:如果这样写:select * from user where remark != "加一份饭 ";
那么只会查询出“要加辣”、“少放油” 这两项的记录。
以上是关于mysql中is null 与 = null的主要内容,如果未能解决你的问题,请参考以下文章
MySQL - IS NOT NULL 和 != NULL 的区别?
在MySQL中is null, is not null对索引的影响【测试】
Mysql中is null 和 is not null的使用注意事项,以及"<;" 等符号在MySQL中的应用
mysql5.7基础 is null 判断内容是否为null