ARRAY_AGG
ARRAY_AGG
description
Syntax
ARRAY_AGG(col)
将一列中的值(包括空值 null)串联成一个数组,可以用于多行转一行(行转列)。
notice
- 数组中元素不保证顺序。
- 返回转换生成的数组。数组中的元素类型与
col
类型一致。
example
mysql> select * from test_doris_array_agg;
+------+------+
| c1 | c2 |
+------+------+
| 1 | a |
| 1 | b |
| 2 | c |
| 2 | NULL |
| 3 | NULL |
+------+------+
mysql> select c1, array_agg(c2) from test_doris_array_agg group by c1;
+------+-----------------+
| c1 | array_agg(`c2`) |
+------+-----------------+
| 1 | ["a","b"] |
| 2 | [NULL,"c"] |
| 3 | [NULL] |
+------+-----------------+
keywords
ARRAY_AGG