mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 16:42:04 +00:00
258d2fd499
* normalize
* split & adjust links
* re-normalize
* adjust ru links
* adjust ja/tr links
* partially apply e0d19d2aea
* reset contribs
13 lines
485 B
Markdown
13 lines
485 B
Markdown
---
|
|
toc_priority: 111
|
|
---
|
|
|
|
# groupUniqArray {#groupuniqarray}
|
|
|
|
Syntax: `groupUniqArray(x)` or `groupUniqArray(max_size)(x)`
|
|
|
|
Creates an array from different argument values. Memory consumption is the same as for the [uniqExact](../../../sql-reference/aggregate-functions/reference/uniqexact.md) function.
|
|
|
|
The second version (with the `max_size` parameter) limits the size of the resulting array to `max_size` elements.
|
|
For example, `groupUniqArray(1)(x)` is equivalent to `[any(x)]`.
|