我正在处理巨大的数据,我的表有3亿多行。该表有500列,有些列只包含空值。我如何才能得到所有空列或列有其他东西以外的空,以上任何一项都将为我工作。
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;
1条答案
按热度按时间qhhrdooz1#
如果列不包含null,则此查询将返回true: