ClickHouse/tests/queries/0_stateless/01278_format_multiple_queries.reference
Alexey Milovidov 2a0da608fd Update tests
2020-06-02 02:31:50 +03:00

17 lines
182 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
;