Innodb行锁实现方式
Innodb行锁是通过给索引上的索引项加锁来实现的,这一点MySQL与Oracle不同,后者是通过在数据块中对相应数据行加锁来实现的,Innodb这种行锁实现特点意味着:只有通过索引条件检索数据,Innodb才使用行级锁,否则,Innodb将使用表锁!
1、在不通过索引条件查询的时候,使用的是表锁而不是行锁
1 create table lzp_test2 (id int, name varchar(10)) engine=innodb; 2 insert into lzp_test2 (id, name) values (1, 'zs'), (2, 'ls');
一个会话Session
1 set autocommit = 0 2 select * from lzp_test2 where id = 1; 3 select * from lzp_test2 where id = 1 for update;
另一个会话Session
1 set autocommit = 0 2 select * from lzp_test2 where id = 2; 3 select * from lzp_test2 where id = 2 for update;