Normalization
By Tiationg Kho |
Normalization
- Normalization is a database design technique
- Normalization vs Denormalization- Normalization- Will divide large tables into smaller and related tables
- Reduce redundancy
- Improve data integrity
 
- Denormalization- Improve read performance by reducing join operations
- Will combining smaller tables into larger ones
 
 
- Step- 1NF (First Normal Form)- Atomic- Each cell must only contain a single value
- Each column name must be unique
- Each row must be unique
 
 
- 2NF (Second Normal Form)
- 3NF (Third Normal Form)