pl/pgsql 数组作为聚合函数的输入
我正在编写 pl/pgsql 函数来进行一些统计处理。使用 8.2 的 postgres。我想使用这个方便的聚合函数:
regr_slope(Y, X)
但是,我将 X 和 Y 数据存储为 pl/pgsql 函数中的本地数组: y 双精度[]; x 双精度[];
麻烦是当我在 pl/pgsql 函数中使用它作为一行时:
slope := regr_slope(y, x);
我收到一条错误消息,指出该函数不可用或参数错误。我怀疑这是因为输入应该被选择为表中的列,而不是作为双精度数组传递。
有没有办法用本地数组制作 regr_slope 函数? (即,某种方法可以将数组转换为聚合函数的有效输入?)
谢谢。
i am writing pl/pgsql function that does some statistics processing. using 8.2 of postgres. i want to use this handy aggregate function:
regr_slope(Y, X)
but, i have my X and Y data stored as local arrays in the pl/pgsql function:
y double precision[];
x double precision[];
trouble is when i use this as a line in the pl/pgsql function:
slope := regr_slope(y, x);
i get an error saying that function isn't available or has the wrong arguments. i suspect it's because the inputs are supposed to be selected as columns from a table instead of being passed as double precision arrays.
is there a way to make the regr_slope function with local arrays? (ie, some way to cast the array to be a valid input to an aggregate function?)
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)