Define nested array : Nested Array « Array « PostgreSQL






Define nested array


postgres=#
postgres=# SELECT ARRAY[ARRAY[1,2], ARRAY[3,4]];
     array
---------------
 {{1,2},{3,4}}
(1 row)


           
       








Related examples in the same category