mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
12 lines
210 B
SQL
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;
|