DBMS Presentation
DBMS Presentation
Normalization: An
Insight into the First
Three Normal Forms
INTRODUCTION TO NORMALIZATION
Database normalization is a process that
organizes data to reduce redundancy and
improve data integrity. This presentation will
explore the first three normal forms (1NF, 2NF,
3NF) and their significance in designing
efficient databases.
WHAT IS NORMALIZATION?
Normalization is a systematic approach to
database design. It involves dividing large
tables into smaller, related tables and defining
relationships between them. This helps
eliminate duplicate data and ensures data
dependencies are logically stored.
FIRST NORMAL FORM (1NF)
A table is in First Normal Form (1NF) when it
contains only atomic values and each entry in
a column is unique. This eliminates repeating
groups and ensures that each record is
uniquely identifiable by a primary key.
SECOND NORMAL FORM (2NF)