mysql batch delete large amounts of data

mysql batch delete large amounts of data

mysql batch delete large amounts of data

Assume that there is a table (syslogs) with 10 million records. You need to delete all the records with statusid=1 without stopping the business. There are about 6 million records. If you directly execute DELETE FROM syslogs WHERE statusid=1, you will find that the deletion fails because of the lock wait timeout exceed error.

Because this statement involves too many records, we delete them in batches using the LIMIT parameter, for example, deleting every 10,000 records.

MySQL can be completed with the following statement:

 DELETE FROM syslogs WHERE status=1 ORDER BY statusid LIMIT 10000;

Then you can successfully delete these records by executing it multiple times.

Note:

When performing large-scale deletions, be sure to use limit. Because if you don't use limit, deleting a large amount of data is likely to cause deadlock.

If the where clause of delete is not on the index, you can first find the primary key and then delete the database based on the primary key.

It is best to add limit 1 when updating and deleting to prevent accidental operations.

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Code for batch deleting data tables with the same prefix in Mysql in PHP

<<:  Vue2.x - Example of using anti-shake and throttling

>>:  How to set Tomcat as an automatically started service? The quickest way

Recommend

Implementation example of Docker rocketmq deployment

Table of contents Preparation Deployment process ...

MySQL simple example of sorting Chinese characters by pinyin

If the field storing the name uses the GBK charac...

How to forget the password of Jenkins in Linux

1.Jenkins installation steps: https://www.jb51.ne...

Detailed introduction to the MySQL installation tutorial under Windows

Table of contents 1. Some concepts you need to un...

Use html-webpack-plugin' to generate HTML page plugin in memory

When we package the webpackjs file, we introduce ...

Docker installs the official Redis image and enables password authentication

Reference: Docker official redis documentation 1....

Quickly solve the problem of slow and stuck opening of input[type=file]

Why is it that when the input tag type is file an...

Awk command line or script that helps you sort text files (recommended)

Awk is a powerful tool that can perform some task...

vue+springboot realizes login verification code

This article example shares the specific code of ...

Detailed installation instructions for the cloud server pagoda panel

Table of contents 0x01. Install the Pagoda Panel ...

Example code of the spread operator and its application in JavaScript

The spread operator allows an expression to be ex...

A brief discussion on the principle of shallow entry and deep exit of MySQL

Table of contents 1. Overview of the page 2. Infi...

Use overflow: hidden to disable page scrollbars

Copy code The code is as follows: html { overflow...