G
gameguru365
I've been building a training database for where I work. The database has to
contain information about classes that employees are required to take,
classes that have been taken, etc.
Table: Employee
------------------
Emp ID
Emp F. Name
Emp L. Name
Table: Class
------------------
Class ID
Class Name
Table: Job-Specific Training Due
---------------------------------
Class ID
Emp ID
Table: Class Attendance Roster
---------------------------------
Class ID
Emp ID
My problem comes from trying to track which employees have not met their job
specific training. I have been able to track which employees have met their
training, but when I try to build the query for just the opposite, I get no
results even though I've put test data in with some employees that have not
attended a class they were required to be at.
I've tried:
WHERE [Class Attendance Roster].[Class ID] Not in [Job-Specific Training
Due].[Class ID] AND [Class Attendance Roster].[Emp ID] Not In [Job-Specific
Training Due].[Emp ID]
Any help would br greatly appreciated!
contain information about classes that employees are required to take,
classes that have been taken, etc.
Table: Employee
------------------
Emp ID
Emp F. Name
Emp L. Name
Table: Class
------------------
Class ID
Class Name
Table: Job-Specific Training Due
---------------------------------
Class ID
Emp ID
Table: Class Attendance Roster
---------------------------------
Class ID
Emp ID
My problem comes from trying to track which employees have not met their job
specific training. I have been able to track which employees have met their
training, but when I try to build the query for just the opposite, I get no
results even though I've put test data in with some employees that have not
attended a class they were required to be at.
I've tried:
WHERE [Class Attendance Roster].[Class ID] Not in [Job-Specific Training
Due].[Class ID] AND [Class Attendance Roster].[Emp ID] Not In [Job-Specific
Training Due].[Emp ID]
Any help would br greatly appreciated!