Previous Topic: Add Table ColumnsNext Topic: Delete Table Rows


Define a New Table to the Product

To define a new table, use the CREATE TABLE statement.

For example, this statement defines the SYSTEMS table.

ADDRESS SQL
  "CREATE TABLE SYSTEMS (NAME CHAR(8) PRIMARY KEY,",
                        "CURRENT_STATE CHAR(4),",
                        "DESIRED_STATE CHAR(4),",
                        "RECOV_PROC    CHAR(8))"