5
我用下面的查詢:聚合函數或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
,但我得到了以下錯誤:
Msg 8120, Level 16, State 1, Line 1 Column 'Patients.LastName' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
非常感謝您的工作。我不能相信我錯過了那麼簡單的事情。 – user2726146