如何同时进行 UPDATE 和 SELECT

2021-12-19 00:00:00 postgresql database select php

我需要更新表的一些行,然后显示这些行.有没有办法用一个查询来做到这一点并避免这 2 个查询?:

I need to update some rows of the tables and then display these rows. Is there a way to do this with one single query and avoid this 2 query ? :

UPDATE table SET foo=1 WHERE boo=2

SELECT * from table WHERE ( foo=1 ) AND ( boo=2 )

推荐答案

在 PostgreSQL v8.2 和更新版本中,您可以使用 返回:

In PostgreSQL v8.2 and newer you can do this using RETURNING:

UPDATE table
SET foo=1
WHERE boo=2
RETURNING *

相关文章