SQL数据库 查询一张表中 空值数量 非空值数量 总数量(空值+非空值) 完整度(非空值⼀总数量)

2025-04-01 00:53:15
推荐回答(2个)
回答1:

select count * from a where 字段 is null;
select count * from a where 字段 is not null;
select count * from a;
select (select count * from a where 字段 is null)/(select count * from a);

回答2:

select * from 表名 where 字段名 is null像这样吗?