I was reading on this DBA page, about Student and Course relationship, and the use of a junction table. Suppose I wanted to do two things:
- Include the student grade for each course
- Allow the professor to generate an attendance sheet of students
I have a Student table like this:
Student (id, first name, last name)
Student_Course (student_id, course_id)
Subject (id, name, professorID)
Can I place the grade in the Student_Course table? What table can I use to generate an attendance sheet with StudentID, and First/Last name? I'm guessing attendance would be a query.