Introduction to locks in MySQL - table-level locks - table locks

1. Introduction to table-level locks

insert image description here

2. Introduction to read locks

insert image description here

lock tables score read;

insert image description here

3. Introduction to write lock

insert image description here

lock tables score write;

Guess you like

Origin blog.csdn.net/weixin_44860226/article/details/131969817