Normalization hija l-proċess ta' organizzazzjoni ta' data biex tnaqqas ir-redundancy u jtejjeb l-integrità billi ssassi d-data f'tabelli relatati, wara serje ta' "normal forms". L-għan: kull biċċa ta' data tinħażan darba waħda, u tinkwa d-duplikazzjoni u l-anomaliji li ticċaġġna.
Il-problema: tabella denormalized (redundant)
❌ orders table with everything in one place — data is DUPLICATED:
order_id | customer_name | customer_email | product | price
1 | Ann | [email protected] | Phone | 999
2 | Ann | [email protected] | Case | 20 ← Ann's info repeated!
Problems (anomalies):
✗ UPDATE anomaly — change Ann's email → must update EVERY one of her orders
✗ INSERT anomaly — can't add a customer without an order
✗ DELETE anomaly — deleting Ann's last order loses her info entirely
✗ Wasted storage and inconsistency risk
