一. 问题描述
一个很简单的group by和count(*) 操作,然后居然报错了
hive> SELECT col1,
> count(*) as cnt
> from table_name
> group by col1
> order by count(*) desc
> ;
FAILED: SemanticException [Error 10128]: Line 5:9 Not yet supported place for UDAF 'count'
hive>
二. 解决方案
大概是在Oracle MySQL上写SQL写习惯了,以为可以这么写。
出了问题也是不知道从何排查
后面把order by子句注释掉之后,居然就可以了,那么就是order by 后面不能跟聚合函数了
于是使用了聚合函数的别名,问题搞定文章来源:https://www.toymoban.com/news/detail-735776.html
修改为如下:文章来源地址https://www.toymoban.com/news/detail-735776.html
hive> SELECT col1,
> count(*) as cnt
> from table_name
> group by col1
> order by cnt desc
> ;
到了这里,关于大数据开发之Hive案例篇9-Not yet supported place for UDAF ‘count‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!