gpt4 book ai didi

SQL,因帕拉 : why can't I do two counts on one query

转载 作者:行者123 更新时间:2023-12-02 03:59:36 36 4
gpt4 key购买 nike

我尝试对查询中的不同列进行两次计数:

select  count(distinct color) as cid,
count(distinct entity) as eid from my_table

如果出现以下错误,上述查询将不起作用:

SQLException: [Simba][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, errorMessage:AnalysisException: 
all DISTINCT aggregate functions need to have the same set of parameters as count(DISTINCT color); deviating function: count(DISTINCT entity)
), Query: select count(distinct color) as cid,
count(distinct entity) as eid from my_table

但是,如果我只进行一次计数,查询就会起作用。这是为什么?我可以在一个查询中进行两次计数吗?谢谢!

最佳答案

Impala 目前不支持同一查询中的多个 count different 表达式,请参阅 IMPALA-110 。这是一项请求的功能,但实现起来非常困难,因此尚未添加。

目前,如果您不需要精确的精度,则可以通过指定 NDV(column) 来生成列的不同值的估计值;查询可以包含 NDV(column) 的多个实例。要使 Impala 自动将 COUNT(DISTINCT) 表达式重写为 NDV(),请启用 APPX_COUNT_DISTINCT 查询选项(请参阅 documentation )。

关于SQL,因帕拉 : why can't I do two counts on one query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42497986/

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