PostgreSQL学习篇9.17 数组类型

数组类型声明: create table testsz(id int,col1 int[]); 输入数组值: postgres=# create table testsz(id int,col1 int[]); CREATE TABLE postgres=# insert into testsz values(1,'{1,2,3}'); INSERT 0 1 postgres=# insert
相关文章
相关标签/搜索