PostgreSQL/Array/array cat
array_cat(ARRAY[[1,2],[3,4]], ARRAY[5,6])
postgres=# SELECT array_cat(ARRAY[[1,2],[3,4]], ARRAY[5,6]);
array_cat
---------------------
{{1,2},{3,4},{5,6}}
(1 row)
postgres=#
array_cat(ARRAY[1,2], ARRAY[3,4])
postgres=# SELECT array_cat(ARRAY[1,2], ARRAY[3,4]);
array_cat
-----------
{1,2,3,4}
(1 row)
postgres=#
array_cat(ARRAY[5,6], ARRAY[[1,2],[3,4]])
postgres=# SELECT array_cat(ARRAY[5,6], ARRAY[[1,2],[3,4]]);
array_cat
--------------------------------
[0:2][1:2]={{5,6},{1,2},{3,4}}
(1 row)
postgres=#
postgres=#