Database for a Testing Center - Tracking dates

T

T. Douglas

I'm trying to create a database for registered students who use our office to
take exams. I have multiple students who take several exams for different
professors several times per week. For example Joe Smith may take an exam
once a week for Professor Johnson and once a month for Professor Miller.

How can I set up a table that will allow me to track the name of the
professor, course number, and test dates for each student?

Thanks for your help.
 
T

Tom van Stiphout

On Tue, 1 Jun 2010 07:20:01 -0700, T. Douglas <T.
(e-mail address removed)> wrote:

You need at least 3 tables, because there is a many-to-many relation
between Students and Exams: each student takes many exams and each
exam has many students. The relationship is expressed with a third
"junction table":
tblTest
StudentID long int required FK PK
ExamID long int required FK PK
DateTaken datetime required

Don't forget to use the Relationships window to draw the relations and
to enforce them.

-Tom.
Microsoft Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top