Normalization Forms Flashcards
1
Q
First Normal Form (1NF)
A
First Normal Form (1NF): All attributes in a relation must be atomic (indivisible), and each column must have a unique name. No repeating groups or arrays are allowed.
2
Q
Second Normal Form (2NF)
A
Second Normal Form (2NF): Must be in 1NF, and all non-prime attributes are fully functionally dependent on the entire primary key. Remove partial dependencies.
3
Q
Third Normal Form (3NF)
A
Third Normal Form (3NF): Must be in 2NF, and no transitive dependencies are allowed. Remove attributes that depend on other non-prime attributes.