mysql中查询字段为null或者不为null的sql语句怎么写?
Posted sonder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中查询字段为null或者不为null的sql语句怎么写?相关的知识,希望对你有一定的参考价值。
在mysql中,查询某字段为空时,切记不可用 = null,
而是 is null,不为空则是 is not null
select * from table where column is null;
select * from table where column is not null;
select * from s_class_log WHERE class_uuid="50f3b8ecde184f22ac6bd7304b388b60" AND course_schedules_uuid="940991bff18d4122a4a6471b61ef18f2" and remark_status is not null
以上是关于mysql中查询字段为null或者不为null的sql语句怎么写?的主要内容,如果未能解决你的问题,请参考以下文章
MySQL 左连接时,查询条件查询某个字段为空或者为特定值解决方案