选择只有空值的列:配置单元

wlzqhblo  于 2021-06-24  发布在  Hive
关注(0)|答案(1)|浏览(238)

我正在处理巨大的数据,我的表有3亿多行。该表有500列,有些列只包含空值。我如何才能得到所有空列或列有其他东西以外的空,以上任何一项都将为我工作。

qhhrdooz

qhhrdooz1#

如果列不包含null,则此查询将返回true:

select 
max(col1 is not null) col1_not_null,
max(col2 is not null) col2_not_null,
...
max(coln is not null) coln_not_null
from your table;

相关问题