ClickHouse/docs/zh/sql-reference/aggregate-functions/index.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

1.6 KiB

machine_translated machine_translated_rev toc_folder_title toc_priority toc_title
true b111334d66 聚合函数 33 导言

聚合函数

聚合函数在 正常 方式如预期的数据库专家。

ClickHouse还支持:

空处理

在聚合过程中,所有 NULLs被跳过。

例:

考虑这个表:

┌─x─┬────y─┐
│ 1 │    2 │
│ 2 │ ᴺᵁᴸᴸ │
│ 3 │    2 │
│ 3 │    3 │
│ 3 │ ᴺᵁᴸᴸ │
└───┴──────┘

比方说,你需要在总的值 y 列:

SELECT sum(y) FROM t_null_big
┌─sum(y)─┐
│      7 │
└────────┘

sum 函数解释 NULL 作为 0. 特别是,这意味着,如果函数接收输入的选择,其中所有的值 NULL,那么结果将是 0,不 NULL.

现在你可以使用 groupArray 函数从创建一个数组 y 列:

SELECT groupArray(y) FROM t_null_big
┌─groupArray(y)─┐
│ [2,2,3]       │
└───────────────┘

groupArray 不包括 NULL 在生成的数组中。

原始文章