I want to count only the null values in a certain column and all the null values in another, but I want my result to have both of these results shown in the same table.
Here is what I still have:
Select Count(*) as 'Column1Count', Count(*) as 'Column2Count'
from table1
Where column1 is null
and column2 is null
please, help
source
share