Creating a table with a multidimensional array column : Array Column « Array « PostgreSQL






Creating a table with a multidimensional array column


postgres=# -- Creating a table with a multidimensional array column
postgres=#
postgres=# CREATE TABLE authors (id integer,titles text[][]);
CREATE TABLE
postgres=#
postgres=# drop table authors;
DROP TABLE
postgres=#
           
       








Related examples in the same category

1.Integer array and text array
2.Two dimentional array
3.Creating a table with an array column