gpt4 book ai didi

postgresql - array_append 函数不起作用

转载 作者:行者123 更新时间:2023-11-29 12:59:30 25 4
gpt4 key购买 nike

我需要将一个项目附加到 postgresql 中的现有数组。我写了这段代码(plpgsql 函数):

perform array_append (arrayA::integer[],id);

由于它不起作用,我尝试了:

raise notice '%', arrayA;
perform array_append (arrayA::integer[],id);
raise notice '%', arrayA;

它给出:

NOTICE:  <NULL>
NOTICE: <NULL>

为什么数组没有更新?

最佳答案

PERFORM 查询丢弃结果。 array_append 不会更新您在第一个参数中指定的数组。它只读取它的值。

您应该将代码更改为:

select array_append (arrayA::integer[],id) into v_arrayA;

关于postgresql - array_append 函数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34337175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com