C
Cornfused
My goal with this question is to learn how to construct a select query that
will locate records of employees that have NOT attended a particular course.
Here's the information...
tbl_Employees: EE_ID(pk), LName, FName, etc...
tbl_Course_Archive: Course_ID(pk), Course_Code, Course_Name, etc...
tbl_EEID_CCode: EE_ID, Course_Code
The employee can attend more than one course and would therefore be listed
potentially more than once in the tbl_EEID_CCode.
I would like, through a parameter query, to have the user identify the
course name ("*" & [Enter Course Name] & "*") and the query return all of the
employee names that have NOT attended the user-identified course.
I know there is an easy answer, but I'm having difficulty wrapping my brain
around the problem.
will locate records of employees that have NOT attended a particular course.
Here's the information...
tbl_Employees: EE_ID(pk), LName, FName, etc...
tbl_Course_Archive: Course_ID(pk), Course_Code, Course_Name, etc...
tbl_EEID_CCode: EE_ID, Course_Code
The employee can attend more than one course and would therefore be listed
potentially more than once in the tbl_EEID_CCode.
I would like, through a parameter query, to have the user identify the
course name ("*" & [Enter Course Name] & "*") and the query return all of the
employee names that have NOT attended the user-identified course.
I know there is an easy answer, but I'm having difficulty wrapping my brain
around the problem.