先阐述结论
- MySQL5.5版本以后默认用InnoDB存储引擎,并且采用可重复读的隔离级别,在进行update操作会进行加锁的!!!
- 如果涉及到索引查询则会加行锁,如果需要查整个表,则会加间隙锁。
看例子
1.建表
create table orders(
id int not null primary key,
count int not null
)engine = innodb default charset = utf8mb4;
2.插入数据
insert orders values(1,1);
insert orders values(2,1);
4.更新操作where字段为索引
- 事务一执行
set autocommit = 0;
update orders set count = count -1 where id =1;
- 事务二执行,直接可以执行成功,数据可以进行更新成功
update orders set count = count -1 where id =2;
- 事务三执行,直接会进行阻塞
update orders set count = count -10 where id =1;
- 结论: update更新的时候会加锁,当where上面存在索引的时候,会间隙锁会退化到行锁,只会锁住当前行,直到提交之后才会进行释放。
5.更新操作where字段为非索引
- 如果先执行以下语句,则会添加间隙所,会在所有的记录上进行加锁。
set autocommit = 0;
update orders set count = count -1 where count =1;
- 运行一下,下面的语句会进行阻塞
update orders set count = count -1 where count =2;