mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
37 lines
1.6 KiB
SQL
37 lines
1.6 KiB
SQL
DROP TABLE IF EXISTS test.partitions;
|
|
CREATE TABLE test.partitions (EventDate Date, CounterID UInt32) ENGINE = MergeTree(EventDate, CounterID, 8192);
|
|
INSERT INTO test.partitions SELECT EventDate + UserID % 365 AS EventDate, CounterID FROM test.hits WHERE CounterID = 1704509;
|
|
|
|
|
|
SELECT count() FROM test.partitions;
|
|
SELECT count() FROM test.partitions WHERE EventDate >= toDate('2015-01-01') AND EventDate < toDate('2015-02-01');
|
|
SELECT count() FROM test.partitions WHERE EventDate < toDate('2015-01-01') OR EventDate >= toDate('2015-02-01');
|
|
|
|
ALTER TABLE test.partitions DETACH PARTITION 201501;
|
|
|
|
SELECT count() FROM test.partitions;
|
|
SELECT count() FROM test.partitions WHERE EventDate >= toDate('2015-01-01') AND EventDate < toDate('2015-02-01');
|
|
SELECT count() FROM test.partitions WHERE EventDate < toDate('2015-01-01') OR EventDate >= toDate('2015-02-01');
|
|
|
|
ALTER TABLE test.partitions ATTACH PARTITION 201501;
|
|
|
|
SELECT count() FROM test.partitions;
|
|
SELECT count() FROM test.partitions WHERE EventDate >= toDate('2015-01-01') AND EventDate < toDate('2015-02-01');
|
|
SELECT count() FROM test.partitions WHERE EventDate < toDate('2015-01-01') OR EventDate >= toDate('2015-02-01');
|
|
|
|
|
|
ALTER TABLE test.partitions DETACH PARTITION 201403;
|
|
|
|
SELECT count() FROM test.partitions;
|
|
|
|
INSERT INTO test.partitions SELECT EventDate + UserID % 365 AS EventDate, CounterID FROM test.hits WHERE CounterID = 1704509 AND toStartOfMonth(EventDate) = toDate('2014-03-01');
|
|
|
|
SELECT count() FROM test.partitions;
|
|
|
|
ALTER TABLE test.partitions ATTACH PARTITION 201403;
|
|
|
|
SELECT count() FROM test.partitions;
|
|
|
|
|
|
DROP TABLE test.partitions;
|