Difference between revisions of "UNIQUE Column Constraint"

From Lianjapedia
Jump to: navigation, search
 
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Column constraint to define a candidate index for a table
 
Column constraint to define a candidate index for a table
 
  
 
==Syntax==
 
==Syntax==
 
UNIQUE [COLLATE <cCollateSequence>]
 
UNIQUE [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 25: Line 21:
 
   acc_name char(20) UNIQUE)
 
   acc_name char(20) UNIQUE)
 
</code>
 
</code>
 
  
 
==Products==
 
==Products==
Recital, Recital Server
+
Lianja, Lianja Server
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:SQL]]
 
[[Category:SQL]]

Latest revision as of 11:23, 11 December 2012

Purpose

Column constraint to define a candidate index for a table

Syntax

UNIQUE [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 UNIQUE column constraint is used to define the column as a candidate index for the table. A unique tag index is built on the specified column; it is given the same name as the column. More than one column can be defined as a candidate index for the table.

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) UNIQUE,;
  acc_name char(20) UNIQUE)

Products

Lianja, Lianja Server