SHARE
Facebook X Pinterest WhatsApp

Database Normalization Page 2

Written By
thumbnail David Faour
David Faour
Jul 20, 2010
ServerWatch content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More



Second Normal Form requires that any non-key field be dependent upon the entire key. For example,
consider the StudentCourses table below, where StudentID and
CourseID form a compound primary key.

StudentID CourseID StudentName CourseLocation Grade
12345 3100 April Math Building A
12345 1300 April Science Building B

The
Student Name field does not depend at all on CourseID, but only on
Student ID. CourseLocation has be dependency on StudentID, but only
on CourseID.

This data should be split into three tables as follows:

Students Table

StudentID Name
12345 April

Courses Table

CourseID CourseLocation
3100 Math Building
1300 Science
Building

Student Courses Table

StudentID CourseID Grade
12345 3100 A
12345 1300 B

In
this example, grade was the only field dependent on the combination
of StudentID and CourseID.

Let’s
suppose that in the first table design, the first row of data was
entered with a StudentName of Aprok, a simple typo. Now, suppose the
following SQL is run.

Delete from StudentCourses where StudentName=”April”

The
erroneous “Aprok” row will not be deleted. However, in the final
design, using the following SQL:

Delete From StudentCourses where StudentID=12345

will
delete every course that April was in by using the ID.

Original date of publication, 02/21/2001

Recommended for you...

What Is a Container? Understanding Containerization
What Is a Print Server? | How It Works and What It Does
Nisar Ahmad
Dec 8, 2023
What Is a Network Policy Server (NPS)? | Essential Guide
Virtual Servers vs. Physical Servers: Comparison and Use Cases
Ray Fernandez
Nov 14, 2023
ServerWatch Logo

ServerWatch is a top resource on servers. Explore the latest news, reviews and guides for server administrators now.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.