Back to Clickhouse

timeSeriesData

docs/en/sql-reference/table-functions/timeSeriesData.md

26.4.1.1-new799 B
Original Source

timeSeriesData Table Function

timeSeriesData(db_name.time_series_table) - Returns the data table used by table db_name.time_series_table whose table engine is TimeSeries:

sql
CREATE TABLE db_name.time_series_table ENGINE=TimeSeries DATA data_table

The function also works if the data table is inner:

sql
CREATE TABLE db_name.time_series_table ENGINE=TimeSeries DATA INNER UUID '01234567-89ab-cdef-0123-456789abcdef'

The following queries are equivalent:

sql
SELECT * FROM timeSeriesData(db_name.time_series_table);
SELECT * FROM timeSeriesData('db_name.time_series_table');
SELECT * FROM timeSeriesData('db_name', 'time_series_table');