我正在尝试打印预算高于平均水平的那些动物园的名称和萌芽状态,我尝试了许多方法来做,但有些根本不起作用,现在我尝试了一下,但显示了每个动物园并出现了芽当我只需要名字和那些比平均水平更高的朋友时
码
select (nombrezoo), avg(presupuesto)
from zoo
group by presupuesto
order by presupuesto asc
where presupuesto > avg(presupuesto)```
Everything is in the same table
最佳答案
您可以在where
子句中使用子查询:
select nombrezoo, presupuest
from zoo
where presupuesto > (select avg(presupuesto) from zoo)
order by presupuesto asc
关于mysql - 显示高于平均值和现场数据的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58811475/