T
thrusty
Can't seem to figure this one out...has to be simple though.
I have a database of employee's training records. I need to find
those employees who have not had the course "BPS".
Right now I have a complex query: Table1 has the employee's personal
info and Table 2 has all courses taken...They are left joined by ID
numbers.
Here's what I have:
SELECT *
FROM EmployeeData LEFT JOIN EmployeeTraining ON EmployeeData.ID =
EmployeeTraining.EmployeeID
WHERE ((((([EmployeeTraining].[CourseName])="BPS")) Is Null));
Of course this yields me people who have no courses entered at all...
Any suggestions?
Thanks!
I have a database of employee's training records. I need to find
those employees who have not had the course "BPS".
Right now I have a complex query: Table1 has the employee's personal
info and Table 2 has all courses taken...They are left joined by ID
numbers.
Here's what I have:
SELECT *
FROM EmployeeData LEFT JOIN EmployeeTraining ON EmployeeData.ID =
EmployeeTraining.EmployeeID
WHERE ((((([EmployeeTraining].[CourseName])="BPS")) Is Null));
Of course this yields me people who have no courses entered at all...
Any suggestions?
Thanks!