事物隔离级别是可重复度:
section 1:
(1)创建数据库: create DATABASE TESTDB;
(2)创建表:
CREATE TABLE `t` ( `id` int(11) NOT NULL, `c` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB;
(3)插入数据:
insert into t(id, c) values(1,1),(2,2),(3,3),(4,4);
(4)select * from t;
section 2:
(1) beging;
(2)更新数据:update t set c=0 where id=c;
(3)commit; 事物的提交,因为行锁,section 1 做不了改行的操作。
(4)select * from t;
然而: section 1: 执行: select * from t; 还是没有更新的数据:
但是使用:select * from t for update; 可以获取更新的数据,这就是悲观锁了。
以上所述就是小编给大家介绍的《MySQL实战 -- 可重复读 与 幻读》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 「Flask实战」鱼书项目实战一
- 「Flask实战」鱼书项目实战三
- 「Flask实战」鱼书项目实战四
- 「Flask实战」鱼书项目实战六
- RocketMQ实战系列从理论到实战
- 「Flask实战」flask鱼书项目实战二
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Computers and Intractability
M R Garey、D S Johnson / W. H. Freeman / 1979-4-26 / GBP 53.99
This book's introduction features a humorous story of a man with a line of people behind him, who explains to his boss, "I can't find an efficient algorithm, but neither can all these famous people." ......一起来看看 《Computers and Intractability》 这本书的介绍吧!