mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
876 B
876 B
toc_priority |
---|
5 |
avg
计算算术平均值。
语法
avg(x)
参数
x
— 列名
x
必须是
Integer,
floating-point, or
Decimal.
返回值
NaN
。 参数列为空时返回。- 算术平均值。 其他情况。
返回类型 总是 Float64.
示例
查询:
SELECT avg(x) FROM values('x Int8', 0, 1, 2, 3, 4, 5)
结果:
┌─avg(x)─┐
│ 2.5 │
└────────┘
示例
查询:
CREATE table test (t UInt8) ENGINE = Memory;
SELECT avg(t) FROM test
结果:
┌─avg(x)─┐
│ nan │
└────────┘