Difference between revisions of "PRIMARY KEY Column Constraint"

From Lianjapedia
Jump to: navigation, search
m (Text replace - "Recital" to "Lianja")
 
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Column constraint to define table's Primary Key
 
Column constraint to define table's Primary Key
 
  
 
==Syntax==
 
==Syntax==
 
PRIMARY KEY [COLLATE <cCollateSequence>]
 
PRIMARY KEY [COLLATE <cCollateSequence>]
 
  
 
==See Also==
 
==See Also==
 
[[ALTER TABLE]], [[SQL Constraints|CONSTRAINTS]], [[CREATE TABLE]]
 
[[ALTER TABLE]], [[SQL Constraints|CONSTRAINTS]], [[CREATE TABLE]]
 
  
 
==Description==
 
==Description==
Line 17: Line 14:
  
 
The optional COLLATE <cCollateSequence> clause is included for Visual FoxPro language compatibility only.
 
The optional COLLATE <cCollateSequence> clause is included for Visual FoxPro language compatibility only.
 
  
 
==Example==
 
==Example==
Line 27: Line 23:
 
   acc_name char(20))
 
   acc_name char(20))
 
</code>
 
</code>
 
  
 
==Products==
 
==Products==

Latest revision as of 10:21, 11 December 2012

Purpose

Column constraint to define table's Primary Key

Syntax

PRIMARY KEY [COLLATE <cCollateSequence>]

See Also

ALTER TABLE, CONSTRAINTS, CREATE TABLE

Description

A constraint is used to define rules that help to provide data integrity. Column constraints are specific to the column name specified. You must have ALTER privilege on the table. The table will be locked for EXCLUSIVE use during the operation.

The PRIMARY KEY column constraint is used to define the column as the table's Primary Key. A unique tag index is built on the specified column; it is given the same name as the column. If a table already has a primary key defined, an error will be returned.

The optional COLLATE <cCollateSequence> clause is included for Visual FoxPro language compatibility only.

Example

CREATE TABLE newcust;
  (acc_ref char(5);
  default strzero(seqno(),5);
  PRIMARY KEY,;
  acc_name char(20))

Products

Lianja, Lianja Server