Interview Questions - SQL Server Common Questions
21.
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.
22.
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.
23.
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.
24.
What is CHECK Constraint?
A CHECK constraint is used to limit the values that can be placed in a column. The check
constraints are used to enforce domain integrity.
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers