ClickHouse/docs/zh/sql-reference/aggregate-functions/reference/grouparray.md
2021-03-25 17:09:19 +08:00

23 lines
520 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
toc_priority: 110
---
# groupArray {#agg_function-grouparray}
**语法**
``` sql
`groupArray(x)`
or
`groupArray(max_size)(x)`
```
创建参数值的数组。
值可以按任何(不确定)顺序添加到数组中。
第二个版本(带有 `max_size` 参数)将结果数组的大小限制为 `max_size` 个元素。
例如, `groupArray (1) (x)` 相当于 `[any (x)]`
在某些情况下您仍然可以依赖执行顺序。这适用于SELECT(查询)来自使用了 `ORDER BY` 子查询的情况。