Home  >  Article  >  Database  >  What is mysql transaction isolation level?

What is mysql transaction isolation level?

藏色散人
藏色散人Original
2019-03-13 13:23:4445759browse

There are four database isolation levels, namely: 1. "Read Uncommitted" uncommitted read; 2. "Read Committed" committed read; 3. "Repeated Read" repeatable read; 4. "Serializable" Serial read.

What is mysql transaction isolation level?

The operating environment of this article: Windows 7 system, Dell G3 computer, mysql8 version.

There are four database isolation levels, as follows:

What is mysql transaction isolation level?

1. Uncommitted read (Read Uncommitted): allows dirty reads, that is, possible reads Get data modified by uncommitted transactions in other sessions

2. Read Committed: Only committed data can be read. Most databases such as Oracle default to this level (no repeated reads)

3. Repeated Read: Repeatable Read. Queries within the same transaction are consistent at the start of the transaction, InnoDB default level. In the SQL standard, this isolation level eliminates non-repeatable reads, but phantom reads still exist, but innoDB solves phantom reads

4. Serializable: Completely serialized reads, each time Both reading and writing need to obtain table-level shared locks, and reading and writing will block each other

Recommended related mysql video tutorials: "mysql tutorial"

The above is the detailed content of What is mysql transaction isolation level?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn