Normalization Erd Example With Exercise
Normalization Erd Example With Exercise
Steps in Normalization
Identify Functional
Dependencies
Second Normal Form (2NF)
Remove Transitive
Third Normal Form (3NF) Dependencies
Normalize the tables below from UNF until 3NF.
Procedure:
UNF 3NF
STUDENT STUDENT_DORM
StudentNum StudentName StudentNum DormCode
100 Smith 100 DS
200 Johnson 200 DA
300 Anand 300 DH
400 Smith 400 DA
500 Wilcox 500 DS
600 Webber 600 DH
700 See Lan 700 DS
DORM
DormCode DormName DormCost
DS Stephens 3500
DA Alexander 3800
DH Horan 4000
ERD based on 3NF:
StudentNum
STUDENT
StudentNam e
M
StudentNum
STUDENT_DORM
DormCode
DormCode N
DORM
DormName DormCost