I just know the isolation level of things, but I have never operated it once. Dirty Read: A transaction has updated a piece of data, and another transaction reads the same data at this time. For some reason, the previous transaction RollBacks the operation, so the data read by the latter transaction will be incorrect. Non-repeatable read: The data is inconsistent between two queries in a transaction. This may be because a transaction updated the original data between the two queries. Phantom Read: The number of data entries in two queries of a transaction is inconsistent. For example, one transaction queries several columns of data, while another transaction inserts several new columns of data at this time. In the next query, the previous transaction will find several columns of data that it did not have before. 4 isolation levels of MySQL read uncommitted : read data that has not been committed: neither problem is solved
Create a data table:create table shuzhi ( id mediumint(8) primary key, name varchar(30), shuzhi mediumint(10) ); alter table shuzhi engine=innodb; insert into shuzhi values(1,'aa',1000); insert into shuzhi values(2,'bb',2000); insert into shuzhi values(3,'cc',3000); insert into shuzhi values(4,'dd',4000); insert into shuzhi values(5,'ee',5000); insert into shuzhi values(6,'ff',6000); insert into shuzhi values(7,'gg',7000); insert into shuzhi values(8,'hh',8000); Start testing the four isolation levels of transactions. The first one: read uncommitted Setting the isolation level#Query the current isolation level SELECT @@tx_isolation #Set the isolation level set session transaction isolation level [isolation level] set session transaction isolation level read uncommitted Start the first process first and start the transaction without querying it yet Window 1 start transaction; Then open the second process (terminal) Window 2 start transaction; update shuzhi set shuzhi='8888' where id=7; Go to the database to query and find that the value of id=7 is still 7000 and the value has not changed Go to window 1 to query this record Window 1 start transaction; select * from shuzhi where id=7 It is found that the data read is the data submitted in window 2, not 7000 This is the end of this article about MySQL isolation level details and examples. For more information about MySQL isolation level, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Select does not support double click dbclick event
>>: CSS container background 10 color gradient Demo (linear-gradient())
Permission denied: The reason for this is: there ...
Table of contents Query Background 1. Like query ...
1. Cleaning before installation rpm -qa | grep jd...
Vue calls the PC camera to take pictures in real ...
Table of contents 1. What does shallow copy mean?...
What should I do if MySQL fails to connect to the...
Linux environment variable configuration When cus...
Table of contents Preface text 1. Concepts relate...
Preface Let me explain here first. Many people on...
How to create a Linux virtual machine in VMware a...
It's easy to send messages to other users in ...
Using flex layout, if it is a nine-square grid, i...
Preface: MySQL master-slave architecture should b...
1. When to execute setUp We all know that vue3 ca...
The main function of the brower module is to dete...