mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
9 lines
191 B
SQL
9 lines
191 B
SQL
SELECT bitmapMax(argMax(x, y))
|
|
FROM remote('127.0.0.{2,3}', view(
|
|
SELECT
|
|
groupBitmapState(toUInt32(number)) AS x,
|
|
number AS y
|
|
FROM numbers(10)
|
|
GROUP BY number
|
|
));
|