mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
6 lines
275 B
SQL
6 lines
275 B
SQL
DROP TABLE IF EXISTS test.merge_hits;
|
|
CREATE TABLE IF NOT EXISTS test.merge_hits AS test.hits ENGINE = Merge(test, '^hits$');
|
|
SELECT count() FROM test.merge_hits WHERE AdvEngineID = 2;
|
|
SELECT count() FROM test.merge_hits PREWHERE AdvEngineID = 2;
|
|
DROP TABLE test.merge_hits;
|