I have been trying to figure this one out for several days and I am no further ahead. I am look for help in pointing me in the right direction.
In Access 2010, I have a table with employee information (employee ID, Name, area) and I have a table with jobs (job ID, job name and area). I have built a table that connects which jobs each employee has been certified on (employee ID and job ID). I am trying to build a query that shows me which jobs the employee is not certified on.
I have tried various joins when building the query but I can't seem to figure this one out. Any suggestions / advice would be appreciated. Thank you!:banghead:
Just so you know, I have tried the unmatched query wizard but it doesn't give the correct results. I need to know which jobs by area the TM is not certified on. The following SQL does not provide those results:
SELECT Certified.EmployeeNo, Certified.JobID
FROM Certified LEFT JOIN Job ON Certified.[JobID] = Job.[JobID]
WHERE (((Job.JobID) Is Null));
In Access 2010, I have a table with employee information (employee ID, Name, area) and I have a table with jobs (job ID, job name and area). I have built a table that connects which jobs each employee has been certified on (employee ID and job ID). I am trying to build a query that shows me which jobs the employee is not certified on.
I have tried various joins when building the query but I can't seem to figure this one out. Any suggestions / advice would be appreciated. Thank you!:banghead:
Just so you know, I have tried the unmatched query wizard but it doesn't give the correct results. I need to know which jobs by area the TM is not certified on. The following SQL does not provide those results:
SELECT Certified.EmployeeNo, Certified.JobID
FROM Certified LEFT JOIN Job ON Certified.[JobID] = Job.[JobID]
WHERE (((Job.JobID) Is Null));
Last edited: