我在表中有两列,我想要一个SINGLE查询:我需要每列的空值计数。据说,如果第一列包含空值,则第二列可能包含或不包含和反向。
我是初学者,并没有太多想法来尝试一下
答案 0 :(得分:1)
Select column1,
(Select count(*) From table Where column = null),
(Select count(*) From table Where column2 = null)
From table
如果要在单个查询中执行此操作,请使用子查询