gpt4 book ai didi

更新mysql

转载 作者:可可西里 更新时间:2023-11-01 07:06:38 25 4
gpt4 key购买 nike

MySQL 支持“for update”关键字。这是我测试它是否按预期工作的方式。我打开了 2 个浏览器选项卡并在一个窗口中执行了以下命令。

mysql> start transaction;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from myxml where id = 2 for update;
....
mysql> update myxml set id = 3 where id = 2 limit 1;
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

mysql> commit;
Query OK, 0 rows affected (0.08 sec)

在另一个窗口中,我开始了事务并尝试对同一条记录进行更新锁定。

mysql> start transaction;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from myxml where id = 2 for update;
Empty set (43.81 sec)

从上面的例子可以看出,我有 43 秒无法选择记录,因为交易正在被 1 号窗口中的另一个应用程序处理。交易结束后,我必须选择记录,但是由于id 2被最先执行的事务更改为id 3,所以没有返回任何记录。

我的问题是使用“for update”语法的缺点是什么?如果我不提交在窗口 1 中运行的事务,记录将永远锁定吗?

最佳答案

是的,如果事务 #1 没有提交,这些记录将永远被锁定,除非连接断开,或者 innodb 决定由于死锁检测而回滚事务。

but since the id 2 was changed to id 3 by the transaction that was executed first, no record was returned.

这不是你想要的吗?如果不是,那么您没有正确使用 SELECT ... FOR UPDATE。见http://dev.mysql.com/doc/refman/5.0/en/innodb-locking-reads.html

关于更新mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4560630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com