Hello experts.
DataBase rookie here. I am programming a students database and need to create the necessary tables and queries to specify which courses are required to get specific certifications and to crosscheck this data with the students' approved courses. Tricky deal though cuz most of the certification paths have courses in common.
So, among other tables, I have two that pertain to this issue. These are the names and fields on the tables:
StudentsAndCourses: A list of studentID, CourseID and Grade.
CertificationStages: includes a list of all the certifications along with the carreer each of them belong to AND the requirements(which I havent defined because I donīt know which datatypes and fields would be better for this)
My best guess is to use a lookup field called "RequiredCourses" with multiple values so I can just use the checkboxes to define the requiered courses.
However, I donīt how to make access compare this data against the approved courses on the "students and courses" table. A query maybe? I donīt know.
I tried but the data gets all fumbled up.
So, my question is: what fields would you include in the "certification requierements" table in order to have the database compare the students' approved courses against the "certification requirements" table?