我正在尝试创建一个执行更新然后返回更新行数的 plpgsql 函数。
我找到了这个:
GET DIAGNOSTICS updated_row_count = ROW_COUNT;
它工作得很好。但是,我还在 PostgreSQL 9.2 for UPDATE 的文档中找到了以下内容。
Outputs
On successful completion, an UPDATE command returns a command tag of the form
UPDATE count
这是链接:http ://www.postgresql.org/docs/9.2/static/sql-update.html
只是想知道如何获得count
in plpgsql 函数。