What is PRIMARY KEY?
A PRIMARY KEY constraint is a unique identifier for a row within a
database table. Every table should have a primary key constraint to uniquely
identify each row and only one primary key constraint can be created for each
table. The primary key constraints are used to enforce entity integrity.
What is
UNIQUE KEY constraint?
A UNIQUE constraint enforces the uniqueness of the values in a set of
columns, so no duplicate values are entered. The unique key constraints are
used to enforce entity integrity as the primary key constraints.
What is
FOREIGN KEY?
A FOREIGN KEY constraint prevents any actions that would destroy links
between tables with the corresponding data values. A foreign key in one table
points to a primary key in another table. Foreign keys prevent actions that
would leave rows with foreign key values when there are no primary keys with
that value. The foreign key constraints are used to enforce referential
integrity.
No comments :
Post a Comment