查询 mysql 数据库表中字段为 null 的记录:
select * from 表名 where 字段名 is null
示例:
select * from student where address is null
查询 mysql 数据库表中字段不为 null 的记录:
select * from 表名 where 字段名 is not null
示例:
select * from student where address is not null
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!