I have a table
create table us
(
a number
);
Now I have data like:
a
1
2
3
4
null
null
null
8
9
Now I need a single query to count null and not null values in column a
|
I have a table
Now I have data like:
Now I need a single query to count null and not null values in column a |
||||
| show 1 more comment |
|
If I understood correctly you want to count all NULL and all NOT NULL in a column... If that is correct:
Edited to have the full query, after reading the comments :]
|
|||||||||||||||
|
|
This works for Oracle and SQL Server, you might be able to get it to work on another RDBMS:
Or:
Cheers, MD |
||||
|
Here is a quick and dirty version that works on Oracle :
|
|||||||||||||||
|
|
for non nulls
for nulls
Hence
ought to do the job |
|||||||||||||
|
|
Number of elements where a is null:
Number of elements where a is not null:
|
|||
|
|
|
if its mysql, you can try something like this.
|
|||
|
|
|
If you're using MS Sql Server...
I don't recomend you doing this... but here you have it (in the same table as result) |
|||
|
|
It's fugly, but it will return a single record with 2 cols indicating the count of nulls vs non nulls. |
|||
|
|
|
Just in case you wanted it in a single record:
;-) |
||||
|
|
unionhere? Montecristo's answer is by far the best solution. – Eric Aug 13 '09 at 13:20