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
36 lines
785 B
SQL
36 lines
785 B
SQL
drop table if exists t;
|
|
drop table if exists s;
|
|
drop table if exists y;
|
|
|
|
create table t(a Int64, b Int64) engine = Memory;
|
|
create table s(a Int64, b Int64) engine = Memory;
|
|
create table y(a Int64, b Int64) engine = Memory;
|
|
|
|
insert into t values (1,1), (2,2);
|
|
insert into s values (1,1);
|
|
insert into y values (1,1);
|
|
|
|
select s.a, s.a, s.b as s_b, s.b from t
|
|
left join s on s.a = t.a
|
|
left join y on s.b = y.b
|
|
order by t.a;
|
|
|
|
select max(s.a) from t
|
|
left join s on s.a = t.a
|
|
left join y on s.b = y.b
|
|
group by t.a;
|
|
|
|
select t.a, t.a as t_a, s.a, s.a as s_a, y.a, y.a as y_a from t
|
|
left join s on t.a = s.a
|
|
left join y on y.b = s.b
|
|
order by t.a;
|
|
|
|
select t.a, t.a as t_a, max(s.a) from t
|
|
left join s on t.a = s.a
|
|
left join y on y.b = s.b
|
|
group by t.a;
|
|
|
|
drop table t;
|
|
drop table s;
|
|
drop table y;
|