mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
1.1 KiB
1.1 KiB
slug | sidebar_position |
---|---|
/en/sql-reference/aggregate-functions/reference/topkweighted | 109 |
topKWeighted
Returns an array of the approximately most frequent values in the specified column. The resulting array is sorted in descending order of approximate frequency of values (not by the values themselves). Additionally, the weight of the value is taken into account.
Syntax
topKWeighted(N)(x, weight)
Arguments
N
— The number of elements to return.x
— The value.weight
— The weight. Every value is accountedweight
times for frequency calculation. UInt64.
Returned value
Returns an array of the values with maximum approximate sum of weights.
Example
Query:
SELECT topKWeighted(2)(k, w) FROM
VALUES('k Char, w UInt64', ('y', 1), ('y', 1), ('x', 5), ('y', 1), ('z', 10))
Result:
┌─topKWeighted(2)(k, w)──┐
│ ['z','x'] │
└────────────────────────┘
See Also