我有带有 where 子句的 SQL Select 查询。例如
select * from table where status = 1
以及如何在选择时同时更新具有选定行的单列?我想标记选定的行,以避免在下一个循环中重新选择。就像是:
select * from table where status = 1; update table set proc = 1 where id in (select id from table where status = 1)
但是这个查询不会返回结果。