SQL statements are defined to create and manage tables.
CREATE TABLE
defines a table that is persisted in durable storage and can be joined with streams.
CREATE TABLE
table_name
( column_name <data_type> [ ,...n ] )
WITH ( property_name = expression [, ...] );
For the detail table spec, please check table.
A statement to get the table definition.
DESCRIBE TABLE table_name
Delete a table. Please make sure all the rules which refer to the table are deleted.
DROP TABLE stream_name
Display all the tables defined.
SHOW TABLES