我正在尝试打印那些预算高于平均水平的动物园的名称和萌芽,我尝试了很多方法,但是有些根本不起作用,现在我尝试了这种方法,但显示了每一个动物园,当我只需要名字时,就萌芽了。
代码
select (nombrezoo), avg(presupuesto)
from zoo
group by presupuesto
order by presupuesto asc
where presupuesto > avg(presupuesto)```
Everything is in the same table
答案 0 :(得分:1)
您可以在where
子句中使用子查询:
select nombrezoo, presupuest
from zoo
where presupuesto > (select avg(presupuesto) from zoo)
order by presupuesto asc