Description of normalization

Normalization:

Rules of Normalization

1NF
  1. Eliminate repeating groups in individual tables.
  2. Create a separate table for each set of related data.
  3. Identify each set of related data with a primary key.
    2NF
  4. Create separate tables for sets of values that apply to multiple records.
  5. Relate these tables with a foreign key.
    3NF
  6. Eliminate fields that do not depend on the key.

Normazlization Example