赞
踩
020.10.6
同事告诉我 update 时,如果没走索引,会锁全表;如果走了索引,只锁住符合条件的行记录。
所以果真如此吗?好像不是欸!
在进入正文之前,需要做一些准备。
create table student(
id int not null primary key auto_increment,
name varchar(10) not null,
gender tinyint not null
) engine=InnoDB;
为 gender 创建普通索引:
create
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。