ClickHouse/docs/en/sql-reference/aggregate-functions/reference/avg.md
Maksim Kita 200d81cea7
Merge pull request #19993 from benbiti/master
[Docs]fix mistype in avg
2021-02-24 23:26:16 +03:00

878 B

toc_priority
5

avg

Calculates the arithmetic mean.

Syntax

avg(x)

Arguments

  • x — Values.

x must be Integer, floating-point, or Decimal.

Returned value

  • NaN if the supplied parameter is empty.
  • Mean otherwise.

Return type is always Float64.

Example

Query:

SELECT avg(x) FROM values('x Int8', 0, 1, 2, 3, 4, 5)

Result:

┌─avg(x)─┐
│    2.5 │
└────────┘

Example

Query:

CREATE table test (t UInt8) ENGINE = Memory;
SELECT avg(t) FROM test

Result:

┌─avg(x)─┐
│    nan │
└────────┘