聚合函数或GROUP BY子句

时间:2013-08-28 16:06:18

标签: sql sql-server join average

我使用了以下查询:

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子句中。

1 个答案:

答案 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,因此必须在该组中包含该列。