mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 19:59:48 +08:00
13 lines
347 B
Plaintext
13 lines
347 B
Plaintext
\c iobeam
|
|
CREATE TABLE conditions (
|
|
time BIGINT NOT NULL,
|
|
device_id TEXT NOT NULL,
|
|
temp DOUBLE PRECISION NULL,
|
|
humidity DOUBLE PRECISION NULL
|
|
);
|
|
|
|
CREATE INDEX ON conditions (time DESC NULLS LAST, device_id);
|
|
CREATE INDEX ON conditions (time DESC NULLS LAST, temp);
|
|
|
|
SELECT name FROM create_hypertable('"conditions"', 'time', 'device_id');
|