按洲划分,求每个洲的平均值,再求平均值的最大值
select max(good)
from
(select avg(gdp) as good from world
group by continent) as avg01
注意,原来写出max(avg(gdp))出错,Invalid use of group function 错误: 聚合函数 不可用
有很多文章里都是这样写max(avg(gdp)),但其实无法运行。
按洲划分,求每个洲的平均值,再求平均值的最大值
select max(good)
from
(select avg(gdp) as good from world
group by continent) as avg01
注意,原来写出max(avg(gdp))出错,Invalid use of group function 错误: 聚合函数 不可用
有很多文章里都是这样写max(avg(gdp)),但其实无法运行。