我的命令是:
select name_of_state, max(total_confirmed_cases/sum(total_confirmed_cases)) from total_india_case;
我有个错误:
FAILED: SemanticException [Error 10128]: Line 1:33 Not yet supported place for UDAF 'sum'
plzzz帮助
我的命令是:
select name_of_state, max(total_confirmed_cases/sum(total_confirmed_cases)) from total_india_case;
我有个错误:
FAILED: SemanticException [Error 10128]: Line 1:33 Not yet supported place for UDAF 'sum'
plzzz帮助
1条答案
按热度按时间ukxgm1gy1#
因为没有使用GROUPBY子句,所以出现错误。不能这样使用聚合函数。
我不知道你想达到什么目的,但假设你想得到的国家名称有最大比例的总确诊病例到整个印度。