September 2010
Intermediate to advanced
1704 pages
111h 8m
English
PRIMARY KEY ConstraintThe PRIMARY KEY constraint is one of the key methods for ensuring entity integrity. When this constraint is defined on a table, it ensures that every row can be uniquely identified with the primary key value(s). The primary key can have one or more columns as part of its definition. None of the columns in the primary key definition can allow nulls. When multiple columns are used in the definition of the primary key, the combination of the values in all the primary key columns must be unique. Duplication can exist in a single column that is part of a multicolumn primary key.
There can be only one primary key defined for each table. When a primary key is defined on a table, a unique index is automatically created as ...