create table documentation

Post Reply
basement_addict
Posts: 78
Joined: Mon Nov 19, 2001 5:20 pm

create table documentation

Post by basement_addict »

I can't seem to find documentation on the new create table statement (FAST? NOT NULL? looks new)

CREATE [FAST] TABLE table-name
(column-name data-type [NOT NULL]
[, column-name data-type [NOT-NULL] ]...)
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

create table documentation

Post by mark »

FAST harks back to a bygone era. All tables are now of type "FAST". It need not be specified. "NOT NULL" is a standard feature of SQL which Texis currently ignores. These have been removed from the docs, but apparently not the builtin help.
Post Reply