Normalization
Normalization
Er.Amul Shrestha
• Normalization is the process of organizing data in a database.
RULES
1.Must be in 2NF
2. No transition Dependency exists. Non prime attributes is dependent in
the Primary key.
Above table is not in 3NF because, Student_id -> Student_city (Transitive Dependency.)
Student zipcode is not super key ,and student city is not Prime attributes.
Student_id Student_na Student_zip Student_zipcode Student_city
me code
301 Ram 001 001 Gulmi
We have converted Table into 3NF , By converting into 2 parts which doesn’t have any transitive
dependencies.