gpt4 book ai didi

function - 如何在另一个返回 Refcursor 集的函数中使用 postgresql 函数

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

我的函数如下

CREATE OR REPLACE FUNCTION get_history(refcursor, encounterid integer, patientid integer) RETURNS SETOF refcursor

Begin

end

如何在另一个函数中使用上述函数。

最佳答案

为什么要返回 SETOF refcursor

也许你想要

 RETURNS TABLE( ...)

 RETURNS SETOF some_composite_type

你可以像任何其他 SELECT 命令一样调用它..

SELECT * FROM get_history(...)

并且可以在 plpgsql 循环中使用它:

FOR my_row_var IN
SELECT * FROM get_history(...)
LOOP
-- do stuff
END LOOP;

或者只是

 RETURNS refcursor

There is a detailed example how to handle this in the manual here.

甚至包括 RETURNS SETOF refcursor 的示例。

关于function - 如何在另一个返回 Refcursor 集的函数中使用 postgresql 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14455737/

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