gpt4 book ai didi

PostgreSQL : Call a psql function with the return of a Select as a parameter

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

我用 create function xxx(id uuid) returns void as $$ 创建了一个函数。现在,我想用 select xxx(select id from mytable where ...); 调用它,但这不起作用。我该怎么做?

最佳答案

只需处理 ID 并将其来源留在函数调用之外:

select xxx(id)
from mytable where ...;

反对投票者的更新:查看实际情况 here

关于PostgreSQL : Call a psql function with the return of a Select as a parameter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46957060/

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