在InnoDB默认隔离级别下,有两个session对数据库InnoDB表 tab 进行操作的时间轴,假设最初表中至少有一行a=2的记录,并且都没有其他人在操作数据库,下面描述中正确的是 session A session B time1 begin ; time2 update tab set a = 1 where a = 2 ; time3 select * from tab where a = 2 ; select * from tab where a = 2 ; time4 commit ; time5 select * from tab where a = 2 ; select * from tab where a = 2 ;