如何在 postgres 10(没有存储过程)中执行插入或更新操作?
How to execute an insert or update operation in postgres 10 ( that not have store procedures)?
是否可以仅使用 postgres 中的函数执行插入或更新操作?。
我使用的是不支持存储过程的 10.14 版本。
你应该使用 INSERT ... ON CONFLICT
。 运行 是否来自函数并不重要。
是否可以仅使用 postgres 中的函数执行插入或更新操作?。 我使用的是不支持存储过程的 10.14 版本。
你应该使用 INSERT ... ON CONFLICT
。 运行 是否来自函数并不重要。