作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试对查询中的不同列进行两次计数:
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/
我是一名优秀的程序员,十分优秀!