Mysql事务隔离级别之读提交

39次阅读

共计 1510 个字符,预计需要花费 4 分钟才能阅读完成。

Mysql 事务隔离级别之读提交
查看 mysql 事务隔离级别
mysql> show variables like ‘%isolation%’;
+—————+—————-+
| Variable_name | Value |
+—————+—————-+
| tx_isolation | READ-COMMITTED |
+—————+—————-+
1 row in set (0.00 sec)

可以看到当前的事务隔离级别为 READ-COMMITTED 读提交
下面看看当前隔离级别下的事务隔离详情,开启两个查询终端 A、B。
下面有一个 order 表,初始数据如下
mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 1 |
+—-+——–+
1 row in set (0.00 sec)
第一步,在 A,B 中都开启事务
mysql> start transaction;
Query OK, 0 rows affected (0.00 sec)
第二步查询两个终端中的 number 值
A
mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 1 |
+—-+——–+
1 row in set (0.00 sec)
B
mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 1 |
+—-+——–+
1 row in set (0.00 sec)
第三步将 B 中的 number 修改为 2, 但不提交事务
mysql> update `order` set number=2;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
第四步查询 A 中的值
mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 1 |
+—-+——–+
1 row in set (0.00 sec)
发现 A 中的值并没有修改。
第五步,提交事务 B, 再次查询 A 中的值
B
mysql> commit;
Query OK, 0 rows affected (0.01 sec)
A
mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 2 |
+—-+——–+
1 row in set (0.00 sec)
发现 A 中的值已经更改
第六步,提交 A 中的事务,再次查询 A,B 的值。
A
mysql> commit;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 2 |
+—-+——–+
1 row in set (0.00 sec)
B
mysql> select * from `order`;
+—-+——–+
| id | number |
+—-+——–+
| 13 | 2 |
+—-+——–+
1 row in set (0.00 sec)
发现 A,B 中的值都更改为 2 了。
下面给一个简单的示意图

我们可以看到,在事务隔离级别为读已提交 的情况下,当 B 中事务提交了之后,即使 A 未提交也可以读到 B 事务提交的结果。这样解决了脏读的问题。
原文地址

正文完
 0