Oracle
 sql >> Database >  >> RDS >> Oracle

Conteggio dei valori null come valore univoco

select  count(distinct col1) + count(distinct case when col1 is null then 1 end)
from    YourTable