I'm building a system whereby students can view their results once they are out. The system is supposed to keep record of the student's marks over the course period when they progress to the next year. I'm not sure about my use of foreign keys in the Module_tests table though. I have two foreign keys in this table to identify a test's mark for a specific student and specific module. I guess this pair of foreign keys are the primary key of Module_tests table. Is this a sensible design? Is there a more efficient one?
Thanks in advance
Student table has three columns: StudentID, first name, surname. Module table has three columns: ModuleID, ModuleName, Year. Module_tests table has five columns: StudentID, ModuleID, Assignment, PracticalTest, FinalExam. (hope it's clear as text as I can't attach images in my posts)