[MySQL] A Simple Summary: REPEATED READ Isolation In MySQL
TL; DR
REPEATED READ is the default isolation level in MySQL. It solves the following:
- Dirty reads: reads uncommitted data (READ COMMITTED has solved this)
- Nonrepeatable reads: reads different data in the same transaction for the same row even UPDATEs are not executed
- Phantom reads: reads additional rows or missing rows in the same transaction, even INSERTs or DELETEs are not executed
This blog post mainly focuses on how nonrepeatable reads and phantom reads are solved by REPEATED READ isolation level and the unsolvable anomalies in REPEATED READ.