Normalization

Database normalization is the process of organizing data to reduce redundancy and improve data integrity. In this tutorial, we’ll go step-by-step from Unnormalized Table → 1NF → 2NF → 3NF, and implement it using **MySQL.

We’ll also write a JOIN query …


This content originally appeared on DEV Community and was authored by LOKHITHA S

Database normalization is the process of organizing data to reduce redundancy and improve data integrity. In this tutorial, we’ll go step-by-step from Unnormalized Table → 1NF → 2NF → 3NF, and implement it using **MySQL.

We’ll also write a JOIN query to display students along with their courses and instructors.

Insertion Anomaly: Cannot add a new course without assigning it to a student.

Update Anomaly: If an instructor’s phone number changes, multiple rows must be updated.
Deletion Anomaly: Removing a student could delete information about the course and instructor. 1.First Normal Form (1NF)
Rule: Each column should have atomic values.

Our table already satisfies 1NF.


This content originally appeared on DEV Community and was authored by LOKHITHA S


Print Share Comment Cite Upload Translate Updates
APA

LOKHITHA S | Sciencx (2025-10-09T01:28:00+00:00) Normalization. Retrieved from https://www.scien.cx/2025/10/09/normalization-4/

MLA
" » Normalization." LOKHITHA S | Sciencx - Thursday October 9, 2025, https://www.scien.cx/2025/10/09/normalization-4/
HARVARD
LOKHITHA S | Sciencx Thursday October 9, 2025 » Normalization., viewed ,<https://www.scien.cx/2025/10/09/normalization-4/>
VANCOUVER
LOKHITHA S | Sciencx - » Normalization. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/10/09/normalization-4/
CHICAGO
" » Normalization." LOKHITHA S | Sciencx - Accessed . https://www.scien.cx/2025/10/09/normalization-4/
IEEE
" » Normalization." LOKHITHA S | Sciencx [Online]. Available: https://www.scien.cx/2025/10/09/normalization-4/. [Accessed: ]
rf:citation
» Normalization | LOKHITHA S | Sciencx | https://www.scien.cx/2025/10/09/normalization-4/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.