ClickHouse/tests/queries/0_stateless/00709_virtual_column_partition_id.sql

11 lines
297 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS partition_id;
2018-09-10 10:20:21 +00:00
CREATE TABLE IF NOT EXISTS partition_id (d Date DEFAULT '2000-01-01', x UInt64) ENGINE = MergeTree(d, x, 5);
2018-09-10 10:20:21 +00:00
INSERT INTO partition_id VALUES (100, 1), (200, 2), (300, 3);
2018-09-10 10:20:21 +00:00
SELECT _partition_id FROM partition_id ORDER BY x;
2018-09-10 10:20:21 +00:00
DROP TABLE IF EXISTS partition_id;
2018-09-10 10:20:21 +00:00