v1.1
DROP TIMESERIES TABLE
Function
Users can delete one or more time-series tables. After the drop statement is executed, both table data and metadata are deleted.
Syntax Format
Delete a time-series table.
DROP TIMESERIES TABLE [ IF EXISTS ] table_name [, table1_name ...];
Parameter Description
-
IF EXISTS
If the specified table does not exist, a notice rather than an error is reported.
-
table_name
Specifies the name of the time-series table to be deleted.
Examples
--Delete the time-series table weather.
Uqbar=#DROP TIMESERIES TABLE weather;
DROP TIMESERIES TABLE