mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
21 lines
466 B
SQL
21 lines
466 B
SQL
DROP TABLE IF EXISTS index;
|
|
|
|
CREATE TABLE index
|
|
(
|
|
key Int32,
|
|
name String,
|
|
merge_date Date
|
|
) ENGINE = MergeTree(merge_date, key, 8192);
|
|
|
|
insert into index values (1,'1','2016-07-07');
|
|
insert into index values (-1,'-1','2016-07-07');
|
|
|
|
select * from index where key = 1;
|
|
select * from index where key = -1;
|
|
OPTIMIZE TABLE index;
|
|
select * from index where key = 1;
|
|
select * from index where key = -1;
|
|
select * from index where key < -0.5;
|
|
|
|
DROP TABLE index;
|