A UNIQUE definition in the
CREATE TABLE statement defines the uniqueness of column value combinations.Syntax
<unique_definition> ::= [CONSTRAINT <index_name>] UNIQUE (<column_name>,...)
index_name, column_nameExplanation
Specifying a UNIQUE definition in a CREATE TABLE statement has the same effect as specifying the CREATE TABLE statement without a UNIQUE definition, but with a
CREATE INDEX statement with UNIQUE.