|
As illustrated in the creation of the RESUME table, tables are created
in TEXIS when you specify their structure and characteristics by
executing a CREATE TABLE command.
The form of this command is:
CREATE TABLE [table-type] table-name
(column-name1 data-type
[, column-name2 data-type] ...) ;
Syntax Notes:
A SQL statement may contain optional clauses or keywords. These
optional parts are included in the statement only if needed. Any
clause within brackets `[ xxx ]' indicates an optional clause.
Copyright © Thunderstone Software Last updated: Sun Mar 17 21:14:49 EDT 2013
|