mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
34 lines
1.2 KiB
SQL
34 lines
1.2 KiB
SQL
set force_primary_key=1;
|
|
|
|
drop table if exists tab;
|
|
create table tab (t DateTime) engine = MergeTree order by toStartOfDay(t);
|
|
insert into tab values ('2020-02-02 01:01:01');
|
|
select t from tab where t > '2020-01-01 01:01:01';
|
|
with t as s select t from tab where s > '2020-01-01 01:01:01';
|
|
|
|
drop table if exists tab;
|
|
create table tab (t DateTime) engine = MergeTree order by toStartOfDay(t + 1);
|
|
insert into tab values ('2020-02-02 01:01:01');
|
|
select t from tab where t + 1 > '2020-01-01 01:01:01';
|
|
with t + 1 as s select t from tab where s > '2020-01-01 01:01:01';
|
|
|
|
|
|
set force_primary_key = 0;
|
|
set force_index_by_date=1;
|
|
|
|
drop table if exists tab;
|
|
create table tab (x Int32, y Int32) engine = MergeTree partition by x + y order by tuple();
|
|
insert into tab values (1, 1), (2, 2);
|
|
select x, y from tab where (x + y) = 2;
|
|
with x + y as s select x, y from tab where s = 2;
|
|
-- with x as s select x, y from tab where s + y = 2;
|
|
|
|
drop table if exists tab;
|
|
create table tab (x Int32, y Int32) engine = MergeTree partition by ((x + y) + 1) * 2 order by tuple();
|
|
insert into tab values (1, 1), (2, 2);
|
|
select x, y from tab where (x + y) + 1 = 3;
|
|
-- with x + y as s select x, y from tab where s + 1 = 3;
|
|
|
|
set force_index_by_date=0;
|
|
drop table if exists tab;
|