Normalization

Student Table (Unnormalized Form – UNF)

Student_IDStudent_NameCourseInstructorInstructor_Office
101John DoeMathDr. SmithRoom 101
101John DoePhysicsDr. BrownRoom 202
102Alice WhiteMathDr. SmithRoom 101
103Bob JohnsonPhysicsDr. BrownRoom 202
103Bob JohnsonChemistryDr. GreenRoom 303

First Normal Form (1NF)

Rules for 1NF:

  • The table should have a primary key.
  • Each column should contain atomic (indivisible) values.
  • No repeating groups or arrays.

Modified Table in 1NF:

Student_IDStudent_NameCourseInstructorInstructor_Office
101John DoeMathDr. SmithRoom 101
101John DoePhysicsDr. BrownRoom 202
102Alice WhiteMathDr. SmithRoom 101
103Bob JohnsonPhysicsDr. BrownRoom 202
103Bob JohnsonChemistryDr. GreenRoom 303

Now the table is in 1NF because each column contains atomic values, and there are no repeating groups.


Second Normal Form (2NF)

Rules for 2NF:

  • The table must be in 1NF.
  • Remove partial dependencies (a non-key column must be fully dependent on the entire primary key).

In the above table, Instructor and Instructor_Office depend only on Course, not on Student_ID. To fix this, we split the table into two:

Student_Course Table (2NF)

Student_IDStudent_NameCourse
101John DoeMath
101John DoePhysics
102Alice WhiteMath
103Bob JohnsonPhysics
103Bob JohnsonChemistry

Course_Instructor Table (2NF)

CourseInstructorInstructor_Office
MathDr. SmithRoom 101
PhysicsDr. BrownRoom 202
ChemistryDr. GreenRoom 303

Now, all non-key attributes are fully dependent on the primary key in their respective tables.


Third Normal Form (3NF)

Rules for 3NF:

  • The table must be in 2NF.
  • Remove transitive dependencies (a non-key column must not depend on another non-key column).

In the Course_Instructor Table, Instructor_Office depends on Instructor, not on Course. To fix this, we create a separate Instructor Table:

Course_Instructor Table (3NF)

CourseInstructor
MathDr. Smith
PhysicsDr. Brown
ChemistryDr. Green

Instructor Table (3NF)

InstructorInstructor_Office
Dr. SmithRoom 101
Dr. BrownRoom 202
Dr. GreenRoom 303

Now, the database is in 3NF because all non-key attributes depend only on the primary key and not on another non-key attribute.


Final Tables in 3NF

  1. Student_Course Table (Student_ID → Course)
  2. Course_Instructor Table (Course → Instructor)
  3. Instructor Table (Instructor → Instructor_Office)

Scroll to top