Question:medium

A database designer is refining a relation that has a composite primary key. Some non-key attributes depend only on part of this key, leading to redundancy. Removing such dependencies ensures the relation satisfies a higher normal form. The correct statement describing this transformation is _______.

Show Hint

Partial dependencies are only possible if you have a composite primary key. If your primary key consists of only one column, the table is automatically in 2NF (provided it is already in 1NF).
Updated On: Jul 4, 2026
  • First Normal Form (1NF) allows repeating groups and multi-valued attributes
  • Second Normal Form (2NF) eliminates partial dependencies on a composite key
  • Third Normal Form (3NF) allows transitive dependencies
  • Boyce-Codd Normal Form (BCNF) is weaker than 3NF
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0