In this example, the following SQL statement is used to create or replace a
table EMPLOYEE with four columns,
ID of INT type, NAME of
VARCHAR type, ONBOARD of DATE type, and
SALARY of VARIANT type.
"CREATE OR REPLACE TABLE EMPLOYEE (" +
"ID INT NOT NULL primary key," +
"NAME VARCHAR (50), " +
"ONBOARD DATE," +
"SALARY VARIANT" +
") COMMENT = 'Created By Doc Team'"