エラー - マルチパート識別子「Grant.EmpID」をバインドできませんでした。
クエリ -
select emp.EmpID,
COUNT(*) as CountRecords,
COUNT(GrantName) AS CountValues
From Employee as emp full join [Grant] as gr
on emp.EmpID = [Grant].EmpID
-- This is the cause for the error ! Change it to gr.EmpID
group by emp.EmpID
なぜこのエラーが発生するのですか? 人を本名とあだ名で呼べないの?