我尝试使用 psql 函数中的 array_append 将一维数组附加到二维数组。我在声明部分定义count_values
为输出 by out count_values integer[][]
,作为变量,并尝试使用,但弹出错误。cout_value
count_value integer[]
count_values := array_append(count_values, count_value)
function array_append(integer[], integer[]) does not exist
if ...
else
count_value:= array_append(count_value, 0);
end if;
index:= index + 1;
end loop;
count_values:= array_append(count_values, count_value);
end loop;
...
看到这个小提琴
或者,从一个空数组开始,
看另一个小提琴