为Postgres整数数组添加值

时间:2016-11-16 18:50:44

标签: arrays postgresql postgresql-9.5

我正在寻找帮助,在PostgreSQL 9.5中为10添加值int[]

查看文档我应该能够使用这种格式来更新它,但它不起作用:

int[] + int   push element onto array (add it to end of array)

我试过这个:

update table1 set integer_array = integer_array + 10::Integer. 

它没有用,我收到了这个错误:

ERROR: operator does not exist: integer[] + integer
  Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
  Position: 67

我觉得这与文档中提供的关于如何执行此操作的格式相同。

4 个答案:

答案 0 :(得分:11)

使用array_append函数在数组的末尾附加元素:

UPDATE table1
SET integer_array = array_append(integer_array, 5);

5是一个选择值,在你的情况下它是一个整数数据类型。您可能还需要一些WHERE子句来更新整个表。

请尝试以下操作:

SELECT ARRAY[1,2], array_append(ARRAY[1,2],3);

结果:

 array | array_append
-------+--------------
 {1,2} | {1,2,3}

答案 1 :(得分:2)

我更喜欢这种方式:

UPDATE table1 SET integer_array = integer_array || '{10}';

您还可以通过单个查询添加多个值:

UPDATE table1 SET integer_array = integer_array || '{10, 11, 12}';

答案 2 :(得分:0)

-- Declaring the array

arrayName int8[];

-- Adding value 2206 to int array

arrayName := arrayName || 2206;

-- looping throught the array

FOREACH i IN ARRAY arrayName 
LOOP 

 RAISE NOTICE 'array value %', i;

END LOOP;

欢呼

答案 3 :(得分:0)

单个:

UPDATE table1
SET integer_array = array_append(integer_array, 3);

多个:

UPDATE table1
SET integer_array = array_cat(integer_array, ARRAY[4,5]);

https://www.postgresql.org/docs/9.1/functions-array.html#ARRAY-FUNCTIONS-TABLE