Skip to main content
Version: Streamsheets 3.0

TIMESCALE.DROP_TABLE

Premium

Drops a table from the timescaledb.

info

As of right now, the timescale functions work with the internal timescaledb. Leave the Connection parameter empty and the connection is automatically set up. We are working on allowing further timescale connections.

Syntax

=TIMESCALE.DROP_TABLE(Connection, TableName)

Arguments

NameTypeDescription
ConnectionConnectionConnection to use for querying. Leave this parameter empty. The internal timescaledb is automatically connected.
TableNameStringDefines which table to drop.

Return

TypeDescription
BooleanTRUE, if successful.

Examples

FormulaResultComment
=TIMESCALE.DROP_TABLE(, "Table1",)
TRUEDrops the table "Table1".

For more examples see our timescale tutorial.