mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
8 lines
329 B
SQL
8 lines
329 B
SQL
SELECT * FROM (
|
|
SELECT number, n, j1, j2
|
|
FROM (SELECT number, number / 2 AS n FROM system.numbers) js1
|
|
ANY LEFT JOIN (SELECT number / 3 AS n, number AS j1, 'Hello' AS j2 FROM system.numbers LIMIT 10) js2
|
|
USING n LIMIT 10
|
|
) ORDER BY n
|
|
SETTINGS join_algorithm = 'hash'; -- the query does not finish with merge join
|