Normalization — organizing data to reduce redundancy.
Normal forms:
Example:
Before (denormalized):
Order: {order_id, customer_name, customer_email, product_name}
After (normalized):
Customer: {customer_id, name, email}
Product: {product_id, name}
Order: {order_id, customer_id, product_id}
Benefits:
BA relevance: