ClickHouse/tests/queries/0_stateless/01278_format_multiple_queries.reference
2020-05-13 18:31:23 +02:00

17 lines
185 B
Plaintext

SELECT
a,
b AS x
FROM table AS t
INNER JOIN table2 AS t2 ON t.id = t2.t_id
WHERE 1 = 1
;
SELECT
a,
b AS x,
if(x = 0, a, b)
FROM table2 AS t
WHERE t.id != 0
;