mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
9 lines
131 B
Plaintext
9 lines
131 B
Plaintext
|
"n"
|
||
|
0
|
||
|
SELECT any(number) * any(number) AS n
|
||
|
FROM numbers(100)
|
||
|
"n"
|
||
|
0,0
|
||
|
SELECT (any(number), any(number) * 2) AS n
|
||
|
FROM numbers(100)
|