mysql表锁演示的语句
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 首先看表结构,引擎innodb +----+----------+------+ | id | name | seat | +----+----------+------+ | 1 | 管理员 | 98 | | 2 | 维护人员 | 98 | | 3 | 主任 | 97 | | 4 | 班主任 | 96 | +----+---
欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入
首先看表结构,引擎innodb
+----+----------+------+
| id | name | seat |
+----+----------+------+
| 1 | 管理员 | 98 |
| 2 | 维护人员 | 98 |
| 3 | 主任 | 97 |
| 4 | 班主任 | 96 |
+----+----------+------+
id是主键,没有其他索引。
先看表锁的情况
发sql:
set autocommit=0;
select * from role where seat=98 for update;
这里注意,set autocommit=0是必不可少的,因为如果数据很快就提交的话,锁就会自动释放。
再发一条sql查询:select * from role where id = 1;
显示结果:
+----+--------+------+
| id | name | seat |
+----+--------+------+
| 1 | 管理员 | 98 |
+----+--------+------+
1 row in set (0.00 sec)
这是因为select 操作 无关乎锁定。
然后看写操作:update role set seat=99 where id =3;
可以看到,漫长的等待后(超过mysql默认的执行时间之后),显示如下结果
ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction
此时我们看锁定记录:
发sql:SHOW PROCESSLIST;
+----+------+-----------------+---------+---------+------+-------+--------------
----+
| Id | User | Host | db | Command | Time | State | Info
|
+----+------+-----------------+---------+---------+------+-------+--------------
----+
| 7 | root | localhost:50903 | mybatis | Sleep | 1403 | NULL | NULL
|
| 16 | root | localhost:51326 | mybatis | Query | 0 | NULL | SHOW PROCESSL
IST |
+----+------+-----------------+---------+---------+------+-------+--------------
----+
第6列Time 1403 表示锁定时间,单位秒。
结论:当where条件后面的列不是索引的时候,加上for update 会锁定全表,以至于后面任何记录都不能执行读写操作。比如本条id=3时,seat=97. 并不是查询时候的条件98.仍然是给锁住了,update不了。
把锁kill掉,写操作就可以继续了:
发sql: kill 7;
这里就不演示效果了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

Gate.io is a highly acclaimed cryptocurrency trading platform known for its extensive token selection, low transaction fees and a user-friendly interface. With its advanced security features and excellent customer service, Gate.io provides traders with a reliable and convenient cryptocurrency trading environment. If you want to join Gate.io, please click the link provided to download the official registration installation package to start your cryptocurrency trading journey.
