Why this lesson matters
Understand when to denormalize and reason about it with a concrete relational example. Normalization separates facts according to dependency so one fact has one authoritative place. 1NF, 2NF and 3NF progressively remove repeating groups and problematic dependencies; denormalization is a deliberate read optimization.
How to reason about it
- For When to Denormalize, the outcome to verify is: Run the statement against sample data and inspect the result before moving to the next case.
- In When to Denormalize, keep this failure controlled: Premature denormalization duplicates facts and forces every writer to keep copies synchronized, while over-normalization can make simple reads unnecessarily complex.
- When to Denormalize practice target: Take an order spreadsheet with repeated customer and product data, normalize it into related tables, then identify one read case where a derived summary could be denormalized safely.
Practical walkthrough
In the When to Denormalize walkthrough: Run the statement against sample data and inspect the result before moving to the next case.
example.sqlsql
SELECT product_id, SUM(quantity) AS sold
FROM order_items
GROUP BY product_id;Practice it yourself
When to Denormalize exercise
Take an order spreadsheet with repeated customer and product data, normalize it into related tables, then identify one read case where a derived summary could be denormalized safely.
- Record the expected result before execution
- Test one valid path and one lesson-specific failure path
- Explain in two lines which boundary owns the decision
