Database Normalization

Week 7 - SQL

Created: 2022-07-29
Tags: #fleeting


Database normalization is useful
-> because it minimizes duplicate data in any single table,
-> allows for database to grow independently of each other
(ie. Types of car engines can grow independent of each type of car).

As a trade-off, queries can get COMPLEX
Reason: Since they have to be able to find data from different parts of the database,

References