Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions web/book/src/reference/stdlib/transforms/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ aggregate {expression or assign operations}

<!-- prettier-ignore -->
> [!NOTE]
> Currently, all declared aggregation functions are `min`, `max`,
> `count`, `count_distinct`, `average`, `stddev` and `sum`. We are in the
> process of filling out [std lib](../).
> Currently, all declared aggregation functions are `min`, `max`, `count`,
> `count_distinct`, `average`, `stddev`, `sum`, `all`, `any` and
> `concat_array`. We are in the process of filling out [std lib](../).

## Examples

Expand All @@ -41,7 +41,7 @@ group {title, country} (

Unlike in SQL, using an aggregation function in `derive` or `select` (or any
other transform except `aggregate`) will not trigger aggregation. By default,
PRQL will interpret such attempts functions as window functions:
PRQL will interpret such attempts as window functions:

```prql
from employees
Expand Down
Loading