Normalization:
Normalization is a database design technique which organizes tables in a manner that reduces redundancy and dependency of data
1. First Normal Form
2. Second Normal Form
3. 3rd Normal Form
4. Boyce-Codd Normal Form (BCNF)
First Normal Form
Normalization is a database design technique which organizes tables in a manner that reduces redundancy and dependency of data
1. First Normal Form
2. Second Normal Form
3. 3rd Normal Form
4. Boyce-Codd Normal Form (BCNF)
First Normal Form
- Each table cell should contain a single value.
- Each record needs to be unique
Second Normal Form:
"Single Column Primary Key"
A relation must be in first normal form and relation must not contain any partial dependency.
"No non-prime attribute"
example:
Third Normal Form:
Has no transitive functional dependencies
Boyce-Codd Normal Form (BCNF) is an extension of Third Normal Form on strict terms
For any non-trivial functional dependency, X → A, X must be a super-key.
No comments:
Post a Comment