In the Query field, enter the SQL command used to create
a new table.
In this example, the SQL command is CREATE OR REPLACE TABLE
employee (id INTEGER, name VARCHAR(50), role VARCHAR(50), salary DOUBLE,
PRIMARY KEY(id)), which creates a new table
employee with four columns, id
of INTEGER type as the primary key, name and
role of VARCHAR type, and
salary of DOUBLE type. This table will be used to
store the employee data.