Concept
Repeatable Read 0
Repeatable Read is a database isolation level that ensures if a transaction reads a value from the database, it will read the same value throughout the transaction, preventing non-repeatable reads. However, it does not protect against phantom reads, where new rows can be added by other transactions and become visible within the same transaction.
Relevant Degrees