A primary key can have null values. State True and False.
Answer options
A
True
B
False
Correct answer: False
Explanation
False. A primary key cannot have NULL values — it must be NOT NULL and unique. NULL represents an unknown value, and allowing it in a primary key would violate entity integrity. This is a fundamental SQL/relational database constraint.