hive踩坑记录四

hive使用group by聚集函数报错:FAILED: SemanticException [Error 10025]: Line 1:36 Expression not in GROUP BY key “***”


作者:dait
来源:CSDN
原文:https://blog.csdn.net/u014793282/article/details/53991347
版权声明:本文为博主原创文章,转载请附上博文链接!

原因:
Hive的SQL语句和普通的SQL语句语法有点出入。Hive里的SQL语句使用group by聚集函数,则select的列必须是后gtoup by里的列,或者也可使用聚集函数,如select id from student group by id;或者select id ,count(1) from student group by id。

使用select id age from student group by id ;就会报错。

解决办法:
使用collect_set()包裹其他想选择的列,如select id collect_set(age) from student group by id;

你可能感兴趣的:(hadoop)