Creates a table having the specified fIElds.
CREATE TABLE | DBF TableName1 [NAME LongTableName] [FREE] (FIEldName1 FIEldType [(nFIEldWidth [, nPrecision])] [NULL | NOT NULL] [CHECK lExpression1 [ERROR cMessageText1]] [DEFAULT eExpression1] [PRIMARY KEY | UNIQUE] [REFERENCES TableName2 [TAG TagName1]] [NOCPTRANS] [, FIEldName2 ...] [, PRIMARY KEY eExpression2 TAG TagName2 |, UNIQUE eExpression3 TAG TagName3] [, FOREIGN KEY eExpression4 TAG TagName4 [NODUP] REFERENCES TableName3 [TAG TagName5]] [, CHECK lExpression2 [ERROR cMessageText2]])| FROM ARRAY ArrayName
Long names can contain up to 128 characters and can be used in place of short file names in the database.
A single table can contain up to 255 fields. If one or more fields allow null values, the limit is reduced by one to 254 fIElds.
FIEldType is a single letter indicating the field's data type. Some fIEld data types require that you specify nFIEldWidth or nPrecision, or both.
The following table lists the values for FIEldType and whether nFIEldWidth and nPrecision are required.
FIEldType