TIMESCALE.DROP_TABLE¶
This is a Streamsheets Premium feature.
Drops a table from the timescaledb. Click here for a more detailed tutorial on timemescaledb functions.
Note
As of right now, the timescale functions work with the internal timescaledb. Leave the Producer parameter empty and the connection is setup. We are working on allowing further timescale connections.
Syntax
=TIMESCALE.DROP_TABLE(Stream, Type, Name [, Timeout])
Arguments
Name |
Description |
---|---|
Stream |
Stream to use for querying. The database name is configured in the affiliated Connector. |
TableName |
Defines which table to drop. |
Return Value
TRUE, if successful.
Examples
Function |
Result |
Comment |
---|---|---|
=TIMESCALE.DROP_TABLE(“Producer”, “Table1”,) |
TRUE |
Drops the table “Table1”. |