COLLECT_LIST
description
Syntax
ARRAY<T> collect_list(expr)
Returns an array consisting of all values in expr within the group. The order of elements in the array is non-deterministic. NULL values are excluded.
notice
Only supported in vectorized engine
example
mysql> set enable_vectorized_engine=true;
mysql> select k1,k2,k3 from collect_test order by k1;
+------+------------+-------+
| k1 | k2 | k3 |
+------+------------+-------+
| 1 | 2022-07-05 | hello |
| 2 | 2022-07-04 | NULL |
| 2 | 2022-07-04 | hello |
| 3 | NULL | world |
| 3 | NULL | world |
+------+------------+-------+
mysql> select k1,collect_list(k2),collect_list(k3) from collect_test group by k1 order by k1;
+------+--------------------------+--------------------+
| k1 | collect_list(`k2`) | collect_list(`k3`) |
+------+--------------------------+--------------------+
| 1 | [2022-07-05] | [hello] |
| 2 | [2022-07-04, 2022-07-04] | [hello] |
| 3 | NULL | [world, world] |
+------+--------------------------+--------------------+
keywords
COLLECT_LIST,COLLECT_SET,ARRAY