We can check the current MySQL transaction isolation level by executing the SELECT @@TX_ISOLATION command.
mysql> SELECT @@TX_ISOLATION; +-----------------+ | @@TX_ISOLATION | +-----------------+ | REPEATABLE-READ | +-----------------+ 1 row in set (0.00 sec)
The above is the detailed content of How to check the current MySQL transaction isolation level?. For more information, please follow other related articles on the PHP Chinese website!