DBMS_Normalization
DBMS_Normalization
--------------------------------------------------------
2NF (Second Normal Form) - Full Functional Dependency
Rule: A table is in 2NF if:
1. It is in 1NF.
2. All non-key attributes depend fully on the primary key (no partial
dependency).
--------------------------------------------------------
--------------------------------------------------------
--------------------------------------------------------
Final Summary:
| Normal Form | Condition |
|------------|------------|
| 1NF | No repeating groups or multiple values in a column. |
| 2NF | No partial dependency (All non-key attributes depend fully on
the primary key). |
| 3NF | No transitive dependency (Non-key attributes should depend
only on the primary key). |
| BCNF | Stronger 3NF, every determinant must be a candidate key. |