Unit 3 Flashcards
What is Normal Form & what it’s types
🔵Normal forms are like rules or guidelines to store data in a table effectively to avoid redundancy duplication of data,reduce updation cost & improve data integrity.
🔵Each normal forms builds based on the previous one.
🔵1NF, 2NF, 3NF,BCNF(Boyce - Codd Normal Form),4NF,5NF.
Define Normalization & purpose of Normalization
Normalization is the process of organizing the data to reduce redundancy and improve integrity. It involves breaking database into two or more tables and defining relationship s between them.
The goal is to ensure that the database is easy to maintain and insertion, updation, deletion don’t lead to inconsistency.
1NF
In the 1NF each column should have only one piece of information i.e atomic values or indivisible.
Functional Dependency
FD means one piece of information can determine the another piece of information.
Example:
Student table
If we know roll number of a student, we can figure out the name of the student.
We can say
Roll number 👉name
This means roll number functionaly determines the student name.
Functional dependency reduces redundancy