Option 2 is correct, except it should be called student_class, reflecting its n::n function, or Enrolment as an entity. and (student_id, class_id)is the PK.
Grade (as you have shown it) is a 1::1 dependency on that compound key (not on one or the other element), and on nothing else, therefore it is an attribute of student_class.
And thereforestudent_classis in 3NF.
If people did not start off by blindly sticking Idiot columns on everything that moved, as you did with Option 1, they would be able to understand the data better and thus normalise better. That (Idiot column in Option 1 as a starting point) interfered with your intuition that the(student_id, class_id) was the Identifier; no additional Idiot column with its additional index was necessary. Then when you got around to evaluatinggrade, its dependency on that PK is obvious.
Idiot columns damage the Relational capability of the database. If you have say three tables in a hierarchy, and you need to grab some columns from the top and bottom tables, you are forced to go through the middle table. If you had Relational Identifiers, instead of Idiot columns, you get from the bottom table to the top table with having to read the middle table.
It is only half true that there are so many joins in a "normalised" database. The full truth is, since the database is not correctly normalised, yes, you are forced into many more joins than are necessary. In a truly Normalised database, with the same tables, the code requires much less joins.
Here's a >Data Model for a College< from a recent assignment, simplified version.
>IDEF1X Notation< for those who need explanation of the symbols.
Note only one Surrogate Key is required.
- This is because in the alternative, (LastName+FirstName+Initials_BirthDate+BithDate) would be the Person PK, and that would be carried as FK in 5 child/grandchild tables, which is 81 bytes, and that is not sensible.
.
See if you can appreciate that the Identifiers (solid lines) are carried through to the children and grandchildren; they have, and convey meaning
It would be stupid to add Surrogate Keys for TeacherId, StudentId, StaffId, when we have a perfectly good PersonId, which is the Foreign Key and already unique. (The columns are named as such to identify their roles.)
All Business Rules were implemented in DDL: FK Constraints; Check Constraints; Rules.
Room has a 4-column Compound Key; Offering has a 3-column Compound Key; the two together eliminate double bookings.
The Offering PK and the Student PK together form the PK for Enrolment (identical to this Question; the PKs are made up of different columns, that's all).