7

配列の配列を作成できます:

select array[array[1, 2], array[3, 4]];
     array     
---------------
 {{1,2},{3,4}}

しかし、配列を集約することはできません:

select array_agg(array[c1, c2])
from (
    values (1, 2), (3, 4)
) s(c1, c2);
ERROR:  could not find array type for data type integer[]

私は何が欠けていますか?

4

1 に答える 1