Skip to main content
Engineering LibreTexts

12.2: First - Second - Third Normal Form

  • Page ID
    92193
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    First Normal Form (1NF)

    In the first normal form, only single values are permitted at the intersection of each row and column; hence, there are no repeating groups.

    To normalize a relation that contains a repeating group, remove the repeating group and form two new relations.

    The PK of the new relation is a combination of the PK of the original relation plus an attribute from the newly created relation for unique identification.

    Process for 1NF

    We will use the Student_Grade_Report table below, from a School database, as our example to explain the process for 1NF.

    Student_Grade_Report (StudentNo, StudentName, Major, CourseNo, CourseName, InstructorNo, InstructorName, InstructorLocation, Grade)

    • In the Student Grade Report table, the repeating group is the course information. A student can take many courses.
    • Remove the repeating group. In this case, it’s the course information for each student.
    • Identify the PK for your new table.
    • The PK must uniquely identify the attribute value (StudentNo and CourseNo).
    • After removing all the attributes related to the course and student, you are left with the student course table (StudentCourse).
    • The Student table (Student) is now in first normal form with the repeating group removed.
    • The two new tables are shown below.

    Student (StudentNo, StudentName, Major)

    StudentCourse (StudentNo, CourseNo, CourseName, InstructorNo, InstructorName, InstructorLocation, Grade)

    How to update 1NF anomalies

    StudentCourse (StudentNo, CourseNo, CourseName, InstructorNo, InstructorName, InstructorLocation, Grade)

    • To add a new course, we need a student.
    • When course information needs to be updated, we may have inconsistencies.
    • To delete a student, we might also delete critical information about a course.

    Second Normal Form (2NF)

    For the second normal form, the relation must first be in 1NF. The relation is automatically in 2NF if, and only if, the PK comprises a single attribute.

    If the relation has a composite PK, then each non-key attribute must be fully dependent on the entire PK and not on a subset of the PK (i.e., there must be no partial dependency or augmentation).

    Process for 2NF

    To move to 2NF, a table must first be in 1NF.

    • The Student table is already in 2NF because it has a single-column PK.
    • When examining the Student Course table, we see that not all the attributes are fully dependent on the PK; specifically, all course information. The only attribute that is fully dependent is grade.
    • Identify the new table that contains the course information.
    • Identify the PK for the new table.
    • The three new tables are shown below.

    Student (StudentNo, StudentName, Major)

    CourseGrade (StudentNo, CourseNo, Grade)

    CourseInstructor (CourseNo, CourseName, InstructorNo, InstructorName, InstructorLocation)

    How to update 2NF anomalies

    • When adding a new instructor, we need a course.
    • Updating course information could lead to inconsistencies for instructor information.
    • Deleting a course may also delete instructor information.

    Third Normal Form (3NF)

    To be in third normal form, the relation must be in second normal form. Also all transitive dependencies must be removed; a non-key attribute may not be functionally dependent on another non-key attribute.

    Process for 3NF

    • Eliminate all dependent attributes in transitive relationship(s) from each of the tables that have a transitive relationship.
    • Create new table(s) with removed dependency.
    • Check new table(s) as well as table(s) modified to make sure that each table has a determinant and that no table contains inappropriate dependencies.
    • See the four new tables below.

    Student (StudentNo, StudentName, Major)

    CourseGrade (StudentNo, CourseNo, Grade)

    Course (CourseNo, CourseName, InstructorNo)

    Instructor (InstructorNo, InstructorName, InstructorLocation)

    At this stage, there should be no anomalies in third normal form. Let’s look at the dependency diagram (Figure 12.1) for this example. The first step is to remove repeating groups, as discussed above.

    Student (StudentNo, StudentName, Major)

    StudentCourse (StudentNo, CourseNo, CourseName, InstructorNo, InstructorName, InstructorLocation, Grade)

    To recap the normalization process for the School database, review the dependencies shown in Figure \(\PageIndex{1}\): .

    Ch-11-Dependency-Diagram-School-300x89
    Figure \(\PageIndex{1}\): Dependency diagram, by A. Watt.

    The abbreviations used in Figure \(\PageIndex{1}\) are as follows:

    • PD: partial dependency
    • TD:  transitive dependency
    • FD:  full dependency (Note: FD typically stands for functional dependency. Using FD as an abbreviation for full dependency is only used in Figure 12.1.)

    12.2: First - Second - Third Normal Form is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?