请问SQL Server中“A条件为空的记录数=0”这个怎么写语句?
select count(1) from test where A is null;
select 关键字段 from 表 group by 关键字段 having count( case when A字段 is null then 1 else null end )=0