一共有6列数据,怎么判断数值不为空的行数
比如说F~k 六列,只要有1个数值不在12~16之内,就列入统计,但是可能存在空值的情况,只有三列有空值的话,就判断那三个是否存在不满足的,如存在,则统计
WorkBook1.cpt.zip
——————————————————
count()本省不会统计空值的行数的
sum(case when column is not null then 1 else 0 end) 查询不为空的行数
sum(case when column is null then 1 else 0 end) 查询为空的行数
mS SQL
select *,
count (*) as times
from XXX
group by *
count(A1{!isnull(A1)})