mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
36 lines
655 B
SQL
36 lines
655 B
SQL
SELECT
|
|
CounterID AS k,
|
|
quantileBFloat16(0.5)(ResolutionWidth)
|
|
FROM remote('127.0.0.{1,2}', test, hits)
|
|
GROUP BY k
|
|
ORDER BY
|
|
count() DESC,
|
|
CounterID ASC
|
|
LIMIT 10
|
|
SETTINGS group_by_use_nulls = 1;
|
|
|
|
SELECT
|
|
CounterID AS k,
|
|
quantileBFloat16(0.5)(ResolutionWidth)
|
|
FROM test.hits
|
|
GROUP BY k
|
|
ORDER BY
|
|
count() DESC,
|
|
CounterID ASC
|
|
LIMIT 10
|
|
SETTINGS group_by_use_nulls = 1 FORMAT Null;
|
|
|
|
-- { echoOn }
|
|
set enable_analyzer = 1;
|
|
|
|
SELECT
|
|
CounterID AS k,
|
|
quantileBFloat16(0.5)(ResolutionWidth)
|
|
FROM remote('127.0.0.{1,2}', test, hits)
|
|
GROUP BY k
|
|
ORDER BY
|
|
count() DESC,
|
|
CounterID ASC
|
|
LIMIT 10
|
|
SETTINGS group_by_use_nulls = 1;
|