View on GitHub

reading-notes

Database Normalization

Link

Database Normalization (Explained in Simple English)

Database normalization is a process used to organize a database into tables and columns. The main idea with this is that a table should be about a specific topic and only supporting topics included.

3 Modification Anomalies

  1. Insert Anomaly
  2. Update Anomaly
  3. Deletion Anaomaly

Back to Homepage