ClickHouse/dbms/tests/queries/0_stateless/00725_join_on_bug_3.sql

15 lines
411 B
MySQL
Raw Normal View History

2018-10-02 18:14:37 +00:00
drop table if exists test.t;
drop table if exists test.z;
create table test.t(a Int64, b Int64) engine = TinyLog;
insert into test.t values(1,1);
insert into test.t values(2,2);
create table test.z(c Int64, d Int64, e Int64) engine = TinyLog;
insert into test.z values(1,1,1);
select * from test.t all left join test.z on (z.c = t.a and z.d = t.b);
drop table if exists test.t;
drop table if exists test.z;