• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
July 08, 2022 |1.6K Views
First Normal Form
  Share   Like
Description
Discussion

If a table has data redundancy and is not properly normalized, then it will be difficult to handle and update the database, without facing data loss. It will also eat up extra memory space and Insertion, Update and Deletion Anomalies are very frequent if database is not normalized.

Normalization is the process of minimizing redundancy from a relation or set of relations. Redundancy in relation may cause insertion, deletion and update anomalies. So, it helps to minimize the redundancy in relations. Normal forms are used to eliminate or reduce redundancy in database tables.

 

First Normal Form : https://www.geeksforgeeks.org/first-normal-form-1nf/

Read More