当前位置:   article > 正文

update 走索引后会不会锁全表?_更新时使用索引会避免锁表吗

更新时使用索引会避免锁表吗

update 走索引后会不会锁全表?

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;
  • 1
  • 2
  • 3
  • 4
  • 5

为 gender 创建普通索引:

create 
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/492322
    推荐阅读
    相关标签
      

    闽ICP备14008679号