Content deleted Content added
m RHaworth moved page Check Constraint to Check constraint |
wikified, better wikilinks |
||
Line 1:
A '''check constraint''' (also known as '''table check constraint''') is a condition that defines valid [[data]] when adding or updating an entry in a table of a
For example, in a table containing products, one could add a check constraint such that the price of a product and quantity of a product is a non-negative value:
Line 9:
If these constraints were not in place, it would be possible to have a negative price (-$30) or quantity (-3 items).
Check constraints are used to ensure the [[Data validation|validity of data]] in a database and to provide [[data integrity]]. If they are used at the database level, applications that use the database will not be able to add invalid data or modify valid data so the data becomes invalid, even if the application itself accepts invalid data.
==Definition==
Line 32:
)
==NOT NULL
A NOT [[Null (SQL)|NULL]] constraint is functionally equivalent to the following check constraint with an <code>IS NOT NULL</code> predicate:
Line 39:
Some [[relational database management system]]s are able to optimize performance when the <code>NOT NULL</code> constraint syntax is used as opposed to the CHECK constraint syntax given above.<ref>PostgreSQL 8.3devel Documentation, Chapter 5. ''Data Definition'', Section 5.3.2. ''Not-Null Constraints'', Website: http://developer.postgresql.org/pgdocs/postgres/ddl-constraints.html, Accessed on May 5, 2007</ref>
== Common
Most database management systems restrict check constraints to a single row, with access to constants and deterministic functions, but not to data in other tables, or to data invisible to the current transaction because of [[transaction isolation]].
|