数据库查询某个字段为空

  1. MySQL 查询某个字段为空
    select * from 表名 where 字段名 is null;

2.SQL Server 查询某个字段为空,没有内容
select * from 表名 where 字段名 = '';


数据库查询某个字段为空_第1张图片
没有内容.png

3.SQL Server 查询某个字段为NULL
select * from 表名 where 字段名 is null;


数据库查询某个字段为空_第2张图片
null.png

你可能感兴趣的:(数据库查询某个字段为空)