What are constraints? Explain different types of
constraints?
Answer Posted / rahul shrivastava
Constraints enable the RDBMS enforce the integrity of the
database automatically, without needing you to create
triggers, rule or defaults.
Types of constraints:
• PRIMARY KEY
• UNIQUE
• FOREIGN KEY
• CHECK
• NOT NULL
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. ( Entity integrity is an integrity rule which
states that every table must have a primary key and that
the column or columns chosen to be the primary key should
be unique and not null)
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.
A FOREIGN KEY constraint prevents any actions that would
destroy link 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.
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.
A NOT NULL constraint enforces that the column will not
accept null values. The not null constraints are used to
enforce domain integrity, as the check constraints.
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
What is an execution plan?
What is sql injection and why is it a problem? : sql server security
What are blobs, tables, and Queues? Is SQL is the standard way to query blobs, tables, and queues?
John exports information periodically from a microsoft sql server database to an oracle database what is the best way to do this?
What are cursors in ms sql server?
Define cross join in sql server joins?
What happens if date-only values are provided as date and time literals?
What are the authentication modes in sql server? How can it be changed?
How to create new tables with "create table" statements in ms sql server?
Is it possible in sql table to have more than one foreign key?
How to insert stored procedure result into temporary table?
What is the Disadvantage of indexed sequential file.
How do I create an extended event in sql server?
When would you prefer to have a minimum number of indexes?
What happens if null values are involved in datetime operations?