For a partitioned table I can count the rows in a partition quickly with a query like this:
select count(*)
from db.table Partition (P)
where column value is Null
Is there a way to do this for multiple partitions?
My desired result is the following-
Partition name Count of Null Rows
P1 20000
P2 12000
P3 30000