Lesson 7 | Second Normal Form |
Objective | Explain the requirements for Second Normal Form |
Requirements for Second Normal Form
Car |
CarID |
Color |
Make |
Model |
Year |
DealerID |
DealerName |
101 |
Red |
Ford |
Escort |
1999 |
501 |
Timmons |
102 |
Blue |
Ford |
Escort |
1999 |
502 |
Serrano |
103 |
Green |
Chevy |
Malibu |
1996 |
503 |
Tomason |
104 |
Black |
Ford |
Explorer |
2000 |
504 |
Frye |
Relational Notation
Note that, in this example, values in the CarID field are equivalent to book ISBN's.
The CarID denotes a particular make and model of car, but not a specific instance of that make and model.
In relational notation, this table would be written as:
Car (CarID, Color, Make, Model, Year, DealerID, DealerName)
The problem with this relation is that the fields relating to a car's dealer are not functionally dependent on the primary key (CarID). If any car can be acquired from more than one dealer, you will waste space by creating a second relation to save information about that car and its second dealer.
For a relation to be in 2NF, every descriptor (non-key column) must be
functionally dependent on every primary-key column in the relation.
The next lesson defines
functional dependencies[2] .
Solution to Anomalies in First Normal Form
The solution to anomalies in a first normal form relation is to break down the relation so there is one relation for each entity in the 1NF relation.
The orders relation, for example, will break down into four relations (customers, items, orders, and line items).
Such relations are in at least second normal form (2NF).
In theoretical terms, second normal form relations are defined as follows:
- The relation is in first normal form.
- All non-key attributes are functionally dependent on the entire primary key.
The new term in the preceding is functionally dependent, a special relationship between attributes.
Two Relations - Exercise
Before moving on to the next lesson, click the Exercise link below to reinforce your understanding of the requirements of 1NF and 2NF.
Two Relations - Exercise
[1]second normal form (2NF): A table is in second normal form when every attribute is functionally dependent on the entire primary key.
[2]functional dependency: A one-way relationship between two attributes so that, for any unique value of one attribute, there is only one value of the other attribute.