0

我使用 MySQL 按主键更新。有两个事务同时开始操作同一条线路。但是一个没看到自己的提交,audit_status是不是3。

START TRANSACTION;
/*ip=*.*.*.64*/
update table
set audit_status = 3
where id = 10001;

/*ip=*.*.*.64*/
select audit_status 
from table 
where id = 10001;
COMMIT;



*SELECT @@transaction_isolation;
REPEATABLE-READ*
4

0 回答 0