标签:
数据库:postgresql 9.4;操作系统:windows
注意在设置default 值时(当然你可以不指定默认值),要声明数组的类型,像这样声明"::bigint[]"。
create table testarray( id serial primary key, images bigint[] default array[]::bigint[] );
注意插入数组时,也要声明数组的类型,同上
insert into testarray (images) values(array[1,2,3,4,5,6]::bigint[]);
查询语句:
select * from testarray;
结果:
要注意为查询出来的数组指定类型。
select 0 = any ((select images from testarray where id=1)::int[]) as isContain
查询结果:
select array_remove((select images from testarray)::varchar[],‘1‘);
查询结果:
思路是将数据查询出来进行操作之后("||"是一个数组操作符,合并元素和数组),再保存回到数据库。可以删除单个元素,也可以删除一个元素集(另一个数组),举一反三。
update testarray set images = (select images from testarray where id=1)::int[] || 1;
select images from testarray;
结果:
给数组添加元素实际上就是将元素合并到一个数组里,办法很多,这里只距离"||"操作符的使用。
select (select images from testarray where id=1)::int[] || 100 as newimages;
结果:
select (select images from testarray where id=1)::int[] || array[200,300,300,400]::int[] as newimages;
结果:
思路同5.3
update testarray update set images = (select images from testarray where id=1)::int[] || array[200,300,300,400]::int[] ;
select images from testarray;
结果:
本博客不是系统的教程,只是简单的介绍postgresql 数据类型的使用。关于postgresql数组类型的操作符和函数,可以参见官方文档:http://www.postgresql.org/docs/9.1/static/functions-array.html
标签:
原文地址:http://my.oschina.net/cnlw/blog/511657