91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么理解mysql中read commited與repeatable read

發布時間:2021-11-11 16:05:25 來源:億速云 閱讀:195 作者:iii 欄目:MySQL數據庫

這篇文章主要介紹“怎么理解mysql中read commited與repeatable read”,在日常操作中,相信很多人在怎么理解mysql中read commited與repeatable read問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么理解mysql中read commited與repeatable read”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

兩個事物,A與B

1. 先看read committed級別的情況:

--A事物
mysql> set session transaction isolation level read committed;
Query OK, 0 rows affected (0.00 sec)

mysql> set autocommit = 0;
Query OK, 0 rows affected (0.01 sec)

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

mysql> select * from test;
+------+------+
| id   | comm |
+------+------+
|    1 | aaa  |
+------+------+
1 row in set (0.00 sec)

--B事物

mysql> set autocommit = 0;
Query OK, 0 rows affected (0.00 sec)

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

mysql> update test set comm = 'bbb' where id = 1;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

--A事物此時查詢表test,此時B事物未提交,因此讀到的仍然是舊的數據

mysql> select * from test;
+------+------+
| id   | comm |
+------+------+
|    1 | aaa  |
+------+------+
1 row in set (0.00 sec)

--B事物提交
mysql> commit;
Query OK, 0 rows affected (0.00 sec)

--A事物再次查詢,數據已發生改變。

mysql> select * from test;
+------+------+
| id   | comm |
+------+------+
|    1 | bbb  |
+------+------+
1 row in set (0.00 sec)

可見,在 read committed級別,顧名思義,A事物在事物進行過程中,讀取不到B事物未提交的數據,但是可以讀取到B事物已經提交的數據修改

2.再看repeatable read級別

--A事物:

mysql> set autocommit = 0;
Query OK, 0 rows affected (0.00 sec)

mysql> set session transaction isolation level repeatable read;
Query OK, 0 rows affected (0.00 sec)

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

mysql> select * from test;
+------+------+
| id   | comm |
+------+------+
|    1 | aaa  |
+------+------+
1 row in set (0.00 sec)

--B事物:
mysql> set autocommit = 0;
Query OK, 0 rows affected (0.00 sec)

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

mysql> update test set comm = 'bbb' where id = 1;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0


--A事物此時查詢表test,此時B事物未提交,因此讀到的仍然是舊的數據
mysql> select * from test;
+------+------+
| id   | comm |
+------+------+
|    1 | aaa  |
+------+------+
1 row in set (0.00 sec)

--B事物提交
mysql> commit;
Query OK, 0 rows affected (0.00 sec)

--A事物再次查詢,發現數據未發生改變
mysql> select * from test;
+------+------+
| id   | comm |
+------+------+
|    1 | aaa  |
+------+------+
1 row in set (0.00 sec)

可見,在 repeatable read 級別,顧名思義,A事物在事物進行過程中,是不能讀取到B事物未提交和已提交的數據修改。

對于repeatable read 級別,事物只能讀取到事物開始時的數據,因此在事物進行過程中讀取到的數據時一致的,而對于read commited級別,在事物進行過程中,讀取到的數據可能是不一致的。

到此,關于“怎么理解mysql中read commited與repeatable read”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

翼城县| 会理县| 文水县| 黄大仙区| 连江县| 衡山县| 新民市| 宜春市| 靖边县| 彰化县| 金川县| 凤翔县| 扶沟县| 塔河县| 嘉义县| 墨竹工卡县| 深水埗区| 平南县| 祁门县| 茶陵县| 济阳县| 濮阳市| 西藏| 西乡县| 双柏县| 宁夏| 潞西市| 银川市| 石柱| 天峻县| 天水市| 盐城市| 鹿泉市| 嘉义县| 东乡县| 迁安市| 文登市| 娱乐| 防城港市| 丰县| 尉犁县|