NORMALIZATION & TYPES OF
NORMALIZATION
Fourth Normal Form (4NF)
Fourth normal form (4NF) is a level of database normalization where there
are no non-trivial multivalued dependencies other than a candidate key.
It builds on the first three normal forms (1NF, 2NF and 3NF) and the Boyce-
Codd Normal Form (BCNF). It states that, in addition to a database meeting
the requirements of BCNF, it must not contain more than one multivalued
dependency.
FOURTH NORMAL FORM
Student Major Hobby Key: {students, major, hobby}
Aman Management Football MVD: ->-> Major, hobby
Aman Management Cricket
Raj Management Football
Raj Medical Football
Ram Management Cricket
Aditya Btech Football
Abhinav Btech Cricket
After decomposing it into fourth normal
form it looks like:
Student Major Student Hobby
Aman Management Aman Football
Raj Management Aman Cricket
Raj Medical Raj Football
Ram Management Ram Cricket
Aditya Btech Aditya Football
Abhinav Btech Abhinav Cricket