gpt4 book ai didi

hadoop - 处理配置单元上的空值

转载 作者:可可西里 更新时间:2023-11-01 14:24:43 27 4
gpt4 key购买 nike

我在 hive 中有一个类型为 double 的列,但是当我这样做时,有些行是 NULL:

select columnA from table;

现在,如果我运行以下命令,两个查询都会得到 0:

select count(*) from table where columnA = "NULL";
select count(*) from table where columnA = NULL;

我如何计算表中为 NULL 的行数?

最佳答案

正确的查询是:

select count(*) from table where columnA is null;

关于hadoop - 处理配置单元上的空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18129949/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com