mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
6 lines
275 B
MySQL
6 lines
275 B
MySQL
|
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;
|