Hi, I'm done with developing a database for training electricity engineers. All tables, forms, queries, reports, etc are finalized.
The only thing is:
I have three tables: Engineers, Sessions, Enrollments.
the Engineers and Sessions are related many-to-many..that's why I'm using the enrollment table to break the many-to-many relation.
The Enrollment table has these fields: Enroll_no(as primary key), Engineer_no(as foreign key), Session_no(as foreign key).
I do not want duplicates. That is: no compination between Engineer_no & Session_no duplicates.
Please, guide me to fix this
The only thing is:
I have three tables: Engineers, Sessions, Enrollments.
the Engineers and Sessions are related many-to-many..that's why I'm using the enrollment table to break the many-to-many relation.
The Enrollment table has these fields: Enroll_no(as primary key), Engineer_no(as foreign key), Session_no(as foreign key).
I do not want duplicates. That is: no compination between Engineer_no & Session_no duplicates.
Please, guide me to fix this