v2.0
- About Uqbar
- Release Note
- Uqbar Installation
- Uqbar Management
- Data Retention Policy
- Time-Series Table Management
- Time-Series Data Write
- Data Compression
- Data Deletion
- Data Query
- Continuous Aggregation
- Time-Series Views
- Cluster Management
- Backup and Restoration
- Security
- GUC Parameters
- SQL Syntax
- Third Party Tools Support
- Glossary
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