Will Update in a Mysql transaction lock the table?

Will Update in a Mysql transaction lock the table?

Two cases:

1. With index 2. Without index

Prerequisites:

Method: Use command line to simulate

1. Since MySQL automatically commits transactions by default, you must first check whether your current database has automatically committed transactions.

Command: select @@autocommit;

The results are as follows:

+--------------+
| @@autocommit |
+--------------+
| 0 |
+--------------+

If it is 1, run the command: set autocommit = 0; set to disable automatic commit

2. The current database table format is as follows

tb_user | CREATE TABLE `tb_user` (
 `id` bigint(20) NOT NULL AUTO_INCREMENT,
 `name` varchar(32) DEFAULT NULL,
 `phone` varchar(11) DEFAULT NULL,
 `operator` varchar(32) DEFAULT NULL,
 `gmt_create` datetime DEFAULT NULL,
 `gmt_modified` datetime DEFAULT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8

Obviously, I didn't add any indexes except the primary key.

Practical example:

1. No Index

Run the command: begin; to start the transaction, and then run the command: update tb_user set phone=11 where name="c1"; to make the changes. Do not commit the transaction yet.

Open another window and run the command directly: update tb_user set phone=22 where name="c2"; You will find that the command is stuck. However, when the previous transaction is submitted through commit, the command will run normally and end, indicating that the table is locked.

2. Add an index to the name field

create index index_name on tb_user(name);

Then continue the operation as in step 1, that is, to open a transaction and run update tb_user set phone=11 where name="c1"; do not commit yet

Then run another command update tb_user set phone=22 where name="c2"; and you will find that the command will not get stuck, indicating that the table is not locked.

But if another update tb_user set phone=22 where name="c1"; updates the same row, it means the row is locked.

3. Summary

If there is no index, the update will lock the table. If an index is added, the row will be locked.

This is the end of this article about whether Update in MySQL transaction will lock the table. For more information about MySQL transaction Update locking table, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Non-standard implementation code for MySQL UPDATE statement
  • mysql update case update field value is not fixed operation
  • When modifying a record in MySQL, the update operation field = field + string
  • MySQL select results to perform update example tutorial
  • Detailed analysis of the syntax of Mysql update to modify multiple fields and
  • Record a pitfall of MySQL update statement update
  • Detailed example of MySQL joint table update data
  • Detailed explanation of the execution process of mysql update statement
  • Summary of Mysql update multi-table joint update method
  • Difference between MySQL update set and and

<<:  HTML markup language - table tag

>>:  Detailed explanation of overlay network in Docker

Recommend

Install Memcached and PHP Memcached extension under CentOS

Regarding the high-performance distributed memory...

Instructions for using the --rm option of docker run

When the Docker container exits, the file system ...

CSS to achieve Cyberpunk 2077 style visual effects in a few steps

background Before starting the article, let’s bri...

Docker Compose installation and usage steps

Table of contents 1. What is Docker Compose? 2. D...

mysql charset=utf8 do you really understand what it means

1. Let's look at a table creation statement f...

JS implementation of carousel example

This article shares the specific code of JS to im...

VMware Workstation is not compatible with Device/Credential Guard

When installing a virtual machine, a prompt appea...

Get the IP and host name of all hosts on Zabbix

zabbix Zabbix ([`zæbiks]) is an enterprise-level ...

DIV background semi-transparent text non-translucent style

DIV background is semi-transparent, but the words ...

How to install MySQL database on Ubuntu

Ubuntu is a free and open source desktop PC opera...

How to install theano and keras on ubuntu system

Note: The system is Ubuntu 14.04LTS, a 32-bit ope...

Bugs encountered when using mybatis-generator with mysql8.0.3 in IDEA

1. Add the plug-in and add the following configur...

How to query or obtain images in a private registry

Docker queries or obtains images in a private reg...

An example of how to quickly deploy web applications using Tomcat in Docker

After learning the basic operations of Docker, we...