PRIMARY KEY CONSTRAINT
A PRIMARY KEY constraint enforces uniqueness and non-null values for a column in a relational database table.
- The primary key column cannot have duplicated values.
- The primary key cannot contain null values.
- A table can have only one primary key.