我使用了以下查询:
select Patients.LastName,
avg (PatientVisits.Pulse)as pulse,
avg (patientvisits.depressionlevel)as depressionLevel
from Patients
left join PatientVisits
on Patients.PatientKey=PatientVisits.PatientKey
但是我收到以下错误:
Msg 8120,Level 16,State 1,Line 1列'Patientss.LastName'在选择列表中无效,因为它不包含在聚合函数或GROUP BY子句中。
答案 0 :(得分:9)
您需要在查询中添加GROUP BY
:
select Patients.LastName,
avg (PatientVisits.Pulse)as pulse,
avg (patientvisits.depressionlevel)as depressionLevel
from Patients
left join PatientVisits
on Patients.PatientKey=PatientVisits.PatientKey
GROUP BY Patients.LastName
SQL Server要求SELECT
列表中不在聚合函数中的任何列都包含在GROUP BY
中。由于您在汇总数据时尝试返回Patients.LastName
,因此必须在该组中包含该列。