仅计算两个不同列中的空值并显示在一个选择语句中
Posted
技术标签:
【中文标题】仅计算两个不同列中的空值并显示在一个选择语句中【英文标题】:Count only null values in two different columns and show in one select statement 【发布时间】:2011-07-09 11:54:54 【问题描述】:我只想计算特定列中的空值和另一列中的所有空值 特定列,但是我希望我的结果将这两个结果都显示在一个表中。
这是我目前所拥有的:
Select Count(*) as 'Column1Count', Count(*) as 'Column2Count'
from table1
Where column1 is null
and column2 is null
请帮忙
【问题讨论】:
【参考方案1】:这应该可行:
select
(select count(*) from table1 where column1 is null) as 'Column1Count',
(select count(*) from table1 where column2 is null) as 'Column2Count';
【讨论】:
【参考方案2】:您可以为此使用一个案例:
select sum(case when Column1 is null then 1 end) as Col1Count
, sum(case when Column2 is null then 1 end) as Col2Count
from table1
【讨论】:
谢谢,这个查询中的情况我从未使用过,但这给了我正确的输出以上是关于仅计算两个不同列中的空值并显示在一个选择语句中的主要内容,如果未能解决你的问题,请参考以下文章