选择更新

发布于 2024-11-18 19:30:41 字数 408 浏览 1 评论 0原文

可能的重复:
选择 ... FOR UPDATE 和 MAX()

此查询中锁定了哪些行?

select max(id) from table where id like '9%' for update

如果另一个用户运行此查询会发生什么?

这是相关问题。

Possible Duplicate:
SELECT … FOR UPDATE and MAX()

Which rows in this query lock ?

select max(id) from table where id like '9%' for update

what occur if another user run this query ?

this is related question.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人生百味 2024-11-25 19:30:41

如果 id 上没有索引,这将锁定所有记录。但我猜你有这样的索引。因此,这将锁定所有匹配的记录,包括中间的一些记录(如果您锁定 3 和 5,则 4 也会被锁定)

SELECT ... FOR UPDATE 读取最新的可用数据,并在其读取的每一行上设置排他锁。因此,它设置的锁与搜索的 SQL UPDATE 在行上设置的锁相同。

编辑
在 SELECT max(id) FROM ... 的情况下,您不需要从表中读取任何行,因为可以从索引中获取此信息。如果您只想锁定一行,正确的查询是 SELECT * FROM table WHERE id = SELECT max(id) FROM table

If you have no index on id, this will lock all of the records. But I guess you have such index. So this will lock all records that are matching, including some records in between (if you are locking 3 and 5, 4 is also being locked)

A SELECT ... FOR UPDATE reads the latest available data, setting exclusive locks on each row it reads. Thus, it sets the same locks a searched SQL UPDATE would set on the rows.

edit
In the case of SELECT max(id) FROM ... you don't need to read any rows from the table, because this information can be optained from the index. If you want to lock exactly one row, the correct query would be SELECT * FROM table WHERE id = SELECT max(id) FROM table

晌融 2024-11-25 19:30:41

我会做出一个有根据的猜测,它取决于 事务隔离级别

I would make an educated guess that it depends on the transaction isolation level.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文