gpt4 book ai didi

hive - 使用 hive 组出错

转载 作者:行者123 更新时间:2023-12-04 23:05:22 25 4
gpt4 key购买 nike

我正在使用以下代码并收到以下错误

      select d.searchpack,d.context, d.day,d,txnid,d.config, c.sgtype from ds3resultstats d join       
context_header c on (d.context=c.contextid) where (d.day>='2012-11-15' and d.day<='2012-11-25' and c.sgtype='Tickler' and d.config like
'%people%') GROUP BY d.context limit 10;
FAILED: Error in semantic analysis: line 1:7 Expression Not In Group By Key d

我猜我正在错误地使用该组

最佳答案

当您使用 group by ,您不能选择其他附加字段。您只能选择具有聚合功能的组键。

hive group by想要查询更多的信息。

Related questions .

代码示例:

select d.context,count(*)
from ds3resultstats
...
group by d.context

或按多个字段分组。
select d.context, d.field2, count(*)
from ds3resultstats
...
group by d.context, d.field2

关于hive - 使用 hive 组出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13677184/

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