Skip to Content
MySQL 8 Cookbook
book

MySQL 8 Cookbook

by Karthik Appigatla
January 2018
Intermediate to advanced
446 pages
12h 57m
English
Packt Publishing
Content preview from MySQL 8 Cookbook

Serializable

This provides the highest level of isolation by locking all the rows that are being selected. This level is like REPEATABLE READ, but InnoDB implicitly converts all plain SELECT statements to SELECT...LOCK IN SHARE MODE if autocommit is disabled. If autocommit is enabled, SELECT is its own transaction.

For example:

# Transaction 1 # Transaction 2
BEGIN;
BEGIN;
SELECT * FROM account WHERE account_number='A';
 --
 --
UPDATE account SET balance=1000 WHERE account_number='A'; # This will wait until the lock held by transaction 1 on row A is released
COMMIT;

--

 --
# UPDATE will be successful now

Another example:

# Transaction 1 # Transaction 2
BEGIN;
BEGIN;
SELECT * FROM account WHERE account_number='A'; ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

MySQL Cookbook

MySQL Cookbook

Paul DuBois
Advanced MySQL 8

Advanced MySQL 8

Eric Vanier, Birju Shah, Tejaswi Malepati

Publisher Resources

ISBN: 9781788395809Other