MySQL实战 -- 可重复读 与 幻读

栏目: 数据库 · 发布时间: 6年前

事物隔离级别是可重复度:

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;

MySQL实战 -- 可重复读 与 幻读

section 2:

(1) beging;

(2)更新数据:update t set c=0 where id=c;

(3)commit;    事物的提交,因为行锁,section 1 做不了改行的操作。

(4)select * from t;

MySQL实战 -- 可重复读 与 幻读

然而: section 1: 执行:  select * from t;     还是没有更新的数据:

MySQL实战 -- 可重复读 与 幻读

但是使用:select * from t for update;    可以获取更新的数据,这就是悲观锁了。

MySQL实战 -- 可重复读 与 幻读


以上所述就是小编给大家介绍的《MySQL实战 -- 可重复读 与 幻读》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Computers and Intractability

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》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具