mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
25 lines
844 B
SQL
25 lines
844 B
SQL
DROP TABLE IF EXISTS test.test;
|
|
|
|
|
|
CREATE TABLE test.test ( dt Date, site_id Int32, site_key String ) ENGINE = MergeTree(dt, (site_id, site_key, dt), 8192);
|
|
INSERT INTO test.test (dt,site_id, site_key) VALUES ('2018-1-29', 100, 'key');
|
|
SELECT * FROM test.test WHERE toInt32(site_id) IN (100);
|
|
SELECT * FROM test.test WHERE toInt32(site_id) IN (100,101);
|
|
|
|
DROP TABLE IF EXISTS test.test;
|
|
|
|
DROP TABLE IF EXISTS test.join_with_index;
|
|
CREATE TABLE test.join_with_index (key UInt32, data UInt64) ENGINE = MergeTree ORDER BY key SETTINGS index_granularity=1;
|
|
INSERT INTO test.join_with_index VALUES (1, 0), (2, 99);
|
|
|
|
SELECT key + 1
|
|
FROM test.join_with_index
|
|
ALL INNER JOIN
|
|
(
|
|
SELECT
|
|
key,
|
|
data
|
|
FROM test.join_with_index
|
|
WHERE toUInt64(data) IN (0, 529335254087962442)
|
|
) USING (key);
|
|
DROP TABLE IF EXISTS test.join_with_index; |