mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
9 lines
534 B
SQL
9 lines
534 B
SQL
SET allow_experimental_analyzer = 1;
|
|
|
|
with pow(2,2) as four select pow(four, 2), 2 as two, pow(two, 2);
|
|
select `pow(four, 2)`, `pow(two, 2)` from (with pow(2,2) as four select pow(four, 2), 2 as two, pow(two, 2));
|
|
with (select pow(two,2)) as four select pow(four, 2), 2 as two, pow(two, 2);
|
|
select `pow(four, 2)`, `pow(two, 2)` from (with (select pow(2,2)) as four select pow(four, 2), 2 as two, pow(two, 2));
|
|
with 'string' as str select str || '_abc';
|
|
select `concat(str, \'_abc\')` from (with 'string' as str select str || '_abc');
|