Synopsis
CREATE TABLE table [ (column [, ...] ) ]
AS select_clause
Inputs
- table
The name of a new table to be created.
- column
The name of a column. Multiple column names can be specified using
a comma-delimited list of column names.
- select_clause
A valid query statement. Refer to SELECT for a description of the
allowed syntax.
Outputs
Refer to CREATE TABLE and SELECT for a summary of possible output
messages.