mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
fa93952231
See also #31076 which noted that links were broken but didn't fix.
748 B
748 B
slug | sidebar_position |
---|---|
/zh/sql-reference/aggregate-functions/reference/anyheavy | 103 |
anyHeavy
选择一个频繁出现的值,使用heavy hitters 算法。 如果某个值在查询的每个执行线程中出现的情况超过一半,则返回此值。 通常情况下,结果是不确定的。
anyHeavy(column)
参数
column
– The column name。
示例
使用 OnTime 数据集,并选择在 AirlineID
列任何频繁出现的值。
查询:
SELECT anyHeavy(AirlineID) AS res
FROM ontime;
结果:
┌───res─┐
│ 19690 │
└───────┘