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
for counting not null values
select count(*) from us where a is not null;
for counting null values
select count(*) from us where a is null;