Mega Code Archive

 
Categories / PostgreSQL / Array
 

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