获取单个列SQL中多个变量的平均值

时间:2017-10-30 16:51:25

标签: sql

我想获得每家医院入院的平均住院时间。

SELECT fake_hospitalName, fake_los
from fakehospitalfacility, fakeadmission
where ((fake_doa2 >= 100101) and (fake_doa2 <= 101231));

但是,每次我使用普通命令时,我都会获得所有医院的平均入院时间。

SELECT fake_hospitalName, avg(fake_los)
from fakehospitalfacility, fakeadmission
where ((fake_doa2 >= 100101) and (fake_doa2 <= 101231))
group by fake_hosptialName;

图像显示了表格的一部分,其中我为每次入场推断了每个住宿时间。

非常感谢任何帮助。

0 个答案:

没有答案