Here are the steps to bring the STUDENT relation to 1NF:
1. Create a new relation called ENROLLMENT with attributes:
Stud_ID, Course_ID, Units
2. Make (Stud_ID, Course_ID) the primary key of ENROLLMENT
3. Remove the repeating group (Course_ID, Units) from STUDENT
4. The STUDENT relation now only contains Stud_ID and Name
with Stud_ID as the primary key
This removes the multivalued attribute and puts the relations
in 1NF by having each row represent a unique fact.
20
5
Bringing a Relation to 2NF
CUSTOMER