Previous | Home | Next |
Enforces the domain integrity by restricting the values to be inserted in a column
Constraints are evaluated in the order in which they are defined
There is a possible to define multiple CHECK constraints on a single column
If check constraints defined at the table level it can be applied for the multiple columns
Syntax:
[CONSTRAINT constraint_name ] CHECK (expression)
where, constraint_name specifies the name of the constraint to be created.
expression specifies the conditions that define the check to be made on the column. It can be any expression arithmetic operation, relational operation or keywords :
The rules regarding the creation of the CHECK constraint are as follows:
- It can be created at the column level
- It can be contain user-specified search condition
- It cannot contain sub queries
- It does not check the existing data in the table if created with the WITH NOCHECK option
- It can reference other columns of the same table
Previous | Home | Next |