我可以創建一個數組的數組:不能總陣列
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[]
我缺少什麼?
可能的重複http://stackoverflow.com/questions/6782268/array-agg-for-array-types – Akash 2013-04-11 17:11:18