Previous Topic

Next Topic

Constraints

To ensure that the contents of columns fulfill your database requirements, specify constraints.

Constraints are checked at the end of every statement that modifies the table. If the constraint is violated, the DBMS Server returns an error and aborts the statement. If the statement is within a multi-statement transaction, the transaction is not aborted.

Note: Constraints are not checked when adding rows to a table using the COPY statement.

Constraints can be specified for individual columns or for the entire table. For details, see Column-Level Constraints and Table-Level Constraints.

The types of constraints are:

Previous Topic

Next Topic

Unique Constraint

To ensure that no two rows have the same value in a particular column or set of columns, specify UNIQUE NOT NULL.

Note: If a column is specified as UNIQUE, NOT NULL must also be specified.

The following example of a column-level unique constraint ensures that no two departments have the same name:

create table dept(dname char(10) unique not null, ...);

To ensure that the data in a group of columns is unique, specify the unique constraint at the table level (rather than for individual columns). A maximum of 32 columns can be specified in a table-level unique constraint.

The following example of a table-level unique constraint ensures that no two departments in the same location have the same name. The columns are declared not null, as required by the unique constraint:

create table project (
    proj_id int not null not default,
    proj_dept_id int not null with default,
    proj_name char(25) not null,
    unique (proj_id) with structure = hash);

Any column or set of columns that is designated as the primary key is implicitly unique and must be specified as NOT NULL. A table can have only one primary key, but can have any number of unique constraints. For example:

create table project (
    proj_id int not null not default,
    proj_dept_id int not null with default,
    proj_name char(25) not null unique,
    unique (proj_dept_id) with structure = hash,
    primary key (proj_id));

Note: Unique constraints create system indexes that cannot be explicitly dropped by the table owner. The indexes are used to enforce the unique constraint.

Previous Topic

Next Topic

Check Constraint

To create conditions that a particular column or set of columns must fulfill, specify a check constraint using the CHECK option. For example, to ensure that salaries are positive numbers:

create table emps (name char(25), sal money,
constraint check_salary check (sal > 0));

The expression specified in the check constraint must be a Boolean expression. For details about expressions, see the chapter "Understanding the Elements of SQL Statements."

To specify a check constraint for a group of columns, specify the check constraint at the table level (as opposed to specifying check constraints for individual columns).

The following example of a table-level check constraint ensures that each department has a budget and that expenses do not exceed the budget:

create table dept ( dname char(10),
    location char(10),
    budget money,
    expenses money,
constraint check_amount check (budget > 0 and
expenses <= budget));

Note: The way nullability is specified for a column determines whether you can change the nullability of the column. If CHECK...NOT NULL is specified for a column, use the ALTER TABLE...DROP CONSTRAINT statement to remove the constraint (because the column is created as nullable-that is, with an additional byte for the null indicator-and the check constraint is used to prevent nulls from being inserted). However, if NOT NULL is specified (as opposed to a CHECK...is NOT NULL CONSTRAINT), the constraint cannot be removed using the ALTER TABLE...DROP CONSTRAINT statement because the column was created without the additional byte for the null indicator, and the additional byte cannot be added.

Check constraints cannot include the following:

Column-level check constraints cannot reference other columns.

Previous Topic

Next Topic

Referential Constraint

To validate an entry against the contents of a column in another table (or another column in the same table), specify a referential constraint using the REFERENCES option. The references option maintains the referential integrity of your tables.

The column-level referential constraint has the following syntax:

REFERENCES [schema.] table_name (column_name)[referential actions] [constraint_with_clause]

The following example of a column-level referential constraint ensures that no employee is assigned to a department that is not present in the dept table:

create table emp (ename char(10),
edept char(10) references dept(dname));

The table-level referential constraint has the following syntax, including the FOREIGN KEY... REFERENCES option:

FOREIGN KEY (column_name{,column_name})
REFERENCES [schema.] table_name [(column_name{,column_name}][referential actions] [constraint_with_clause]

The following example of a table-level referential constraint verifies the contents of the name and empno columns against the corresponding columns in the emp table to ensure that anyone entered into the table of managers is on file as an employee:

create table mgr (name char(10),
        empno char(5),
        ...
foreign key (name, empno) references emp);

The preceding example omits the names of the referenced column; the emp table must have a primary key constraint that specifies the corresponding name and employee number columns.

Example

Here is an example of the delete and update rules:

create table employee (empl_no int not nul),
        emp_name char(20) not null,
        dept_id char(6) references department (dept_id)
        on delete cascade on update cascade,
        mgrno int references employee (empl_no) on update
cascade
        on delete set null);

If a department row is deleted, all employees in that department are also deleted. If a department ID is changed in the department table, it is also changed in all referencing employee rows.

If a manager's ID is changed, his employees are changed to match. If the manager is fired, all his employees have mgr_id set to null.

The following considerations apply to the table and column being referenced (the column specified following the keyword references):

Previous Topic

Next Topic

Primary Key Constraints

The primary key constraint is used to denote one or more columns to which other tables refer in referential constraints. A table can have only one primary key; the primary key for a table is implicitly unique and must be declared not null.

This is an example of a primary key constraint and a related referential constraint:

Referenced table:

create table partnumbers(partno int primary key...);

Referencing table:

create table inventory(ipartno int...
foreign key (ipartno) references partnumbers);

In this case, the part numbers in the inventory table are checked against those in the partnumbers table; the referential constraint for the inventory table is a table-level constraint and therefore must specify the foreign key clause. The referential constraint for the inventory does not specify the column that is referenced in the partnumbers table. By default, the DBMS Server checks the column declared as the primary key. For related details, see Referential Constraint.


© 2007 Ingres Corporation. All rights reserved.