SQL数据库 查询一张表中 空值数量 非空值数量 总数量(空值+非空值) 完整度(非空值/总数量)
2个回答
展开全部
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);
select count * from a where 字段 is not null;
select count * from a;
select (select count * from a where 字段 is null)/(select count * from a);
追问
查询整张表~不是某个字段~
一张表里面不少于100个字段
追答
要是这样的话还不如导出到excel进行统计……
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from 表名 where 字段名 is null像这样吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询