Counting null and non-null values in a single query

后端 未结 26 1459
星月不相逢
星月不相逢 2021-01-29 19:31

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

26条回答
  •  死守一世寂寞
    2021-01-29 19:57

    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;
    

提交回复
热议问题