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 * from 表名 where 字段名 is null像这样吗?