Hi Everybody,
This is a simple system to keep marks of students. I have the following tables:
student(student_id, name)
subject(subject_id, subject_name)
student_subject(student_id, subject_id)
marks(student_id, subject_id, score)
I want to be able to enter marks in the format given in the attachment (I choose the subject, in this case Maths, id = 1, it gives me a list of all those who have taken Maths, id = 1, I enter the marks of ALL Students in the text boxes, and then I submit).
I cannot figure out how to do that??