I have a column in hive with type double, but some of the rows are NULL when I do:
select columnA from table;
now, if I run the following, I get 0 for both queries:
select count(*) from table where columnA = "NULL";
select count(*) from table where columnA = NULL;
how can I count the rows in my table which are NULL?