Computer Science

Does the Primary key of a table accept null or duplicate value? Justify.

Relational Database

1 Like

Answer

A primary key in a table does not accept null or duplicate values. A primary key is a set of one or more attributes/fields that uniquely identifies a tuple/row in a table. It must contain unique values, i.e., non-redundant, and cannot be re-declared or left null.

Answered By

3 Likes


Related Questions