Postgres-SELECT函数()和CALL函数()之间的区别?

时间:2019-05-13 10:16:45

标签: postgresql function postgresql-11

在PostgreSQL v11中, SELECT函数()和CALL过程之间的区别? 如果我选择一个过程,则会返回此错误:

错误:public.delete()是一个过程 要调用过程,请使用CALL。

1 个答案:

答案 0 :(得分:0)

无法选择该过程。请注意以下过程和功能之间的基本区别。

 - In PostgreSQL 11, PROCEDURE was added
 - Functions return value but procedures does not return values
 - Transaction can be crated inside procedure and not inside function