PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come contare i valori nulli in postgresql?

Usa count(*) :

select count(*) from train where "column" is NULL;

count() con qualsiasi altro argomento conta i valori non NULL, quindi non ce ne sono se "column" è NULL .