What does defining a PRIMARY KEY on a table column guarantee?
- aValues are unique, but NULLs are allowed
- bValues are unique and cannot be NULL✓
- cValues cannot be NULL, but duplicates are allowed
- dValues are automatically generated as an incrementing sequence
Explanation:A primary key combines a uniqueness constraint with NOT NULL. Auto-increment behavior (d) is a separate feature (SERIAL / IDENTITY / AUTO_INCREMENT) that is often used together with primary keys but is not implied by them.