Managing Transactions in MySQL
Managing Transactions in MySQL
Ramkumar Lakshminarayanan
Serializable
Repeatable Read
Read Committed
Read Uncommitted
REPEATABLE READ
provides more isolation from a transaction, ensuring
that data reads are the same throughout the
transaction even if the data has been changed and
committed by a different transaction. The
SERIALIZABLE isolation level provides the slowest
performance but also the most isolation