Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在使用 SQL 语言的 PostgreSQL 存储过程中使用变量?
如果可能,如何为它们分配来自选择的结果并在以后使用它们。
不,SQL 语言函数可以返回一个标量值,如果这是您选择的值,但 SQL 函数中没有变量。(我能想到的最接近的是使用 CTE。)
如果您使用语言 plpgsql,那么您可以声明变量。