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.