ClickHouse/dbms/tests/queries/0_stateless/01212_empty_join_and_totals.sql
Alexey Milovidov 9a41113bf4 Renamed tests
2020-03-24 08:25:17 +03:00

12 lines
210 B
SQL

select * from system.one t1
join system.one t2
on t1.dummy = t2.dummy
limit 0
FORMAT TabSeparated;
select * from system.one t1
join system.one t2
on t1.dummy = t2.dummy
where t2.dummy > 0
FORMAT TabSeparated;