mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
2d2bc052e1
* Typo fix. * Links fix. * Fixed links in docs. * More fixes. * docs/en: cleaning some files * docs/en: cleaning data_types * docs/en: cleaning database_engines * docs/en: cleaning development * docs/en: cleaning getting_started * docs/en: cleaning interfaces * docs/en: cleaning operations * docs/en: cleaning query_lamguage * docs/en: cleaning en * docs/ru: cleaning data_types * docs/ru: cleaning index * docs/ru: cleaning database_engines * docs/ru: cleaning development * docs/ru: cleaning general * docs/ru: cleaning getting_started * docs/ru: cleaning interfaces * docs/ru: cleaning operations * docs/ru: cleaning query_language * docs: cleaning interfaces/http * Update docs/en/data_types/array.md decorated ``` Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/getting_started/example_datasets/nyc_taxi.md fixed typo Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/getting_started/example_datasets/ontime.md fixed typo Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/interfaces/formats.md fixed error Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/table_engines/custom_partitioning_key.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/utils/clickhouse-local.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/query_language/dicts/external_dicts_dict_sources.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/utils/clickhouse-local.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/query_language/functions/json_functions.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/query_language/functions/json_functions.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/query_language/functions/other_functions.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/query_language/functions/other_functions.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/query_language/functions/date_time_functions.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/table_engines/jdbc.md Co-Authored-By: BayoNet <da-daos@yandex.ru> * docs: fixed error * docs: fixed error
57 lines
1.5 KiB
Markdown
57 lines
1.5 KiB
Markdown
# Aggregate functions {#aggregate_functions}
|
|
|
|
Aggregate functions work in the [normal](http://www.sql-tutorial.com/sql-aggregate-functions-sql-tutorial) way as expected by database experts.
|
|
|
|
ClickHouse also supports:
|
|
|
|
- [Parametric aggregate functions](parametric_functions.md#aggregate_functions_parametric), which accept other parameters in addition to columns.
|
|
- [Combinators](combinators.md#aggregate_functions_combinators), which change the behavior of aggregate functions.
|
|
|
|
## NULL processing
|
|
|
|
During aggregation, all `NULL`s are skipped.
|
|
|
|
**Examples:**
|
|
|
|
Consider this table:
|
|
|
|
```text
|
|
┌─x─┬────y─┐
|
|
│ 1 │ 2 │
|
|
│ 2 │ ᴺᵁᴸᴸ │
|
|
│ 3 │ 2 │
|
|
│ 3 │ 3 │
|
|
│ 3 │ ᴺᵁᴸᴸ │
|
|
└───┴──────┘
|
|
```
|
|
|
|
Let's say you need to total the values in the `y` column:
|
|
|
|
```sql
|
|
SELECT sum(y) FROM t_null_big
|
|
```
|
|
```
|
|
┌─sum(y)─┐
|
|
│ 7 │
|
|
└────────┘
|
|
```
|
|
|
|
The `sum` function interprets `NULL` as `0`. In particular, this means that if the function receives input of a selection where all the values are `NULL`, then the result will be `0`, not `NULL`.
|
|
|
|
Now you can use the `groupArray` function to create an array from the `y` column:
|
|
|
|
```sql
|
|
SELECT groupArray(y) FROM t_null_big
|
|
```
|
|
```text
|
|
┌─groupArray(y)─┐
|
|
│ [2,2,3] │
|
|
└───────────────┘
|
|
|
|
```
|
|
|
|
`groupArray` does not include `NULL` in the resulting array.
|
|
|
|
|
|
[Original article](https://clickhouse.yandex/docs/en/query_language/agg_functions/) <!--hide-->
|