CREATE TABLE

CREATE TABLE creates a new table with the specified columns. For example:

    CREATE TABLE tablename (columnElement [, columnElement] ... )
Where:

      columnElement : := columnDefinition
      
      columnDefinition : := columnName dataType
          [ columnConstraintDefinition [columnConstraintDefinition ] ...]
      defaultValue ::= literal | NULL
      
      columnConstraintDefinition : :=
          NOT NULL
          | UNIQUE

[Contents] [Previous] [Next]
Click the icon to mail questions or corrections about this material to Taligent personnel.
Copyright©1995 Taligent,Inc. All rights reserved.

Generated with WebMaker