How to avoid duplication of data when inserting in MySql batch

How to avoid duplication of data when inserting in MySql batch

Preface

Mysql inserts non-duplicate data. When a large amount of data needs to be inserted, it is necessary to determine whether the insertion is repeated and then insert it. So how to improve efficiency? There are many ways to solve the problem, and the solutions are different for different scenarios. When the amount of data is small, any solution is fine, but when the amount of data is large, it is not a simple problem.

1. insert ignore into

The data that already exists in the database will be ignored. If there is no data in the database, new data will be inserted. If there is data, the currently inserted data will be skipped. In this way, the existing data in the database can be retained, achieving the purpose of inserting data in the gap.

Controller method:

/**
 *Insert employee data*/
@PostMapping("save")
@ResponseBody
public CommonResult<Employee> save(@RequestBody Employee employee) {
    return employeeService.saveEmp(employee);
}
INSERT INTO
<!--Insert employee data-->
<insert id="saveEmp" parameterType="com.dt.springbootdemo.entity.Employee">
    INSERT INTO t_employee(id, name, age, salary, department_id)
    VALUES (#{id},#{name},#{age},#{salary},#{departmentId})
</insert> 

insert image description here

We add a new employee record with primary key ID 1.

When I send the request again, an SQL statement execution error will be reported because the primary key is unique and the record with ID=1 already exists.

insert image description here

Add ignore and add another employee record with ID=1

INSERT IGNORE INTO 

insert image description here

There was no error, but the addition was not successful, and the addition of duplicate data was ignored.

2. on duplicate key update

When the primary key or unique key is repeated, an update statement is executed.

 ON DUPLICATE KEY UPDATE id = id

We still insert the employee record with ID=1 and modify other fields (age=25):

insert image description here

View database records:

insert image description here

You can see that there is no change, there is only one piece of data, and a successful prompt is returned.

This method has a prerequisite, that is, the constraint to be inserted must be a primary key or a unique constraint (in your business, the field that needs to be used as the only judgment should be set as a unique constraint, that is, a unique key).

Extension: This method also has the needs of other business scenarios ->>>Update other fields regularly.

We add a time field to the employee table:

private Date updateTime; 

insert image description here

Then we insert data according to the updateTime field:

<insert id="saveEmp" parameterType="com.dt.springbootdemo.entity.Employee">
    INSERT INTO t_employee(id, name, age, salary, department_id,update_time)
    VALUES (#{id},#{name},#{age},#{salary},#{departmentId},now())
    ON DUPLICATE KEY UPDATE update_time = now()
</insert>

insert image description here

insert image description here

insert image description here

What should I do if I need to update other fields (such as age) when inserting?

insert image description here
insert image description here

insert image description here

3. replace into

If there are records with the same primary or unique, delete them first. Insert new records again.

REPLACE INTO
 <!--Insert employee data-->
<insert id="saveEmp" parameterType="com.dt.springbootdemo.entity.Employee">
    REPLACE INTO t_employee(id, name, age, salary, department_id,update_time)
    VALUES (#{id},#{name},#{age},#{salary},#{departmentId},now())
</insert>

insert image description here

insert image description here

Summary: In actual development, the second method is most commonly used, which is batch addition.

<!--Insert employee data-->
<insert id="saveEmp" parameterType="java.util.List">
    INSERT INTO t_employee(id, name, age, salary, department_id,update_time)
    VALUES
    <foreach collection="list" item="item" index="index" separator=",">
        (#{item.id},#{item.name},#{item.age},#{item.salary},#{item.departmentId},now())
    </foreach>
    ON DUPLICATE KEY UPDATE id = id
</insert>

Controller:

@PostMapping("save")
@ResponseBody
public CommonResult<Employee> save(@RequestBody List<Employee> employeeList) {
    return employeeService.saveEmp(employeeList);
}

insert image description here

If the same ID exists, it will not be added repeatedly.

Summarize

In actual work, method 2 is the most commonly used method, and different methods are used according to different scenarios.

This is the end of this article about how to insert data without duplication during MySql batch insertion. For more relevant MySql non-duplicate insertion content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL uses UNIQUE to implement non-duplicate data insertion

<<:  A brief discussion on the design of Tomcat multi-layer container

>>:  Question about custom attributes of html tags

Recommend

A graphic tutorial on how to install MySQL in Windows

Abstract: This article mainly explains how to ins...

Implementation of Docker deployment of web projects

The previous article has installed the docker ser...

HTML tags list and usage instructions

List of HTML tags mark type Name or meaning effec...

Detailed steps to build an independent mail server on Centos7.9

Table of contents Preface 1. Configure intranet D...

Summary of various methods of implementing article dividing line styles with CSS

This article summarizes various ways to implement...

Example of how to achieve ceiling effect using WeChat applet

Table of contents 1. Implementation 2. Problems 3...

In-depth explanation of nginx location priority

location expression type ~ indicates to perform a...

Detailed explanation based on event bubbling, event capture and event delegation

Event bubbling, event capturing, and event delega...

Specific operations of MYSQL scheduled clearing of backup data

1|0 Background Due to project requirements, each ...

Installation tutorial of MySQL 5.7.17 zip package version under win10

The installation tutorial of mysql5.7.17 is share...

How to install Jenkins on CentOS 8

To install Jenkins on CentOS 8, you need to use t...

How to query the latest transaction ID in MySQL

Written in front: Sometimes you may need to view ...