ClickHouse/docs/en/sql-reference/aggregate-functions/reference/topkweighted.md

44 lines
1.1 KiB
Markdown
Raw Normal View History

---
toc_priority: 109
---
# topKWeighted {#topkweighted}
2021-06-10 11:34:36 +00:00
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**
``` sql
topKWeighted(N)(x, weight)
```
**Arguments**
- `N` — The number of elements to return.
- `x` — The value.
2021-06-10 11:34:36 +00:00
- `weight` — The weight. Every value is accounted `weight` times for frequency calculation. [UInt64](../../../sql-reference/data-types/int-uint.md).
**Returned value**
Returns an array of the values with maximum approximate sum of weights.
**Example**
Query:
``` sql
SELECT topKWeighted(10)(number, number) FROM numbers(1000)
```
Result:
``` text
┌─topKWeighted(10)(number, number)──────────┐
│ [999,998,997,996,995,994,993,992,991,990] │
└───────────────────────────────────────────┘
```
2021-06-09 21:13:31 +00:00
**See Also**
2021-06-10 11:34:36 +00:00
- [topK](../../../sql-reference/aggregate-functions/reference/topk.md)