Thanks in advance - your help is greatly appreciated.
I need my query to pull all certifications and employees that have received them, even those certifications that an employee does not have. Essentially showing in a report (grouped by emp) all certifications each emp has and those not yet received as evidenced by no Certification date.
I have three tables: see attachment
Not sure how to construct this to produce desired records
SELECT [LastName] & ", " & [FirstName] & " " & [MiddleInitial] AS EmpName, tbl_Certifications.CertName, tbl_CertDetails.CertIssueDate
FROM tbl_Employees INNER JOIN (tbl_Certifications INNER JOIN tbl_CertDetails ON tbl_Certifications.CertID = tbl_CertDetails.CertID) ON tbl_Employees.EmployeeID = tbl_CertDetails.EmpID;