array_cat(ARRAY[[1,2],[3,4]], ARRAY[5,6]) : array_cat « Array « PostgreSQL






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=#
           
       








Related examples in the same category

1.array_cat(ARRAY[5,6], ARRAY[[1,2],[3,4]])
2.array_cat(ARRAY[1,2], ARRAY[3,4])