Three ways to prevent MySQL from inserting duplicate data

Three ways to prevent MySQL from inserting duplicate data

Create a new table

CREATE TABLE `person` (
 `id` int NOT NULL COMMENT 'Primary key',
 `name` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'Name',
 `age` int NULL DEFAULT NULL COMMENT 'Age',
 `address` varchar(512) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'Address',
 PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_bin ROW_FORMAT = Dynamic;

Add three pieces of data as follows:

We can avoid it according to the insertion method:

1. insert ignore

insert ignore will automatically ignore the data that already exists in the database (based on the primary key or unique index). If there is no data, insert the data; if there is data, skip inserting this data.

--Insert SQL as follows:
insert ignore into person (id,name,age,address) values(3,'那谁',23,'赣苏省'),(4,'我天',25,'浙江省');

If you check the database again, you will find that only data with id 4 is inserted. Since data with id 3 already exists in the database, it is ignored.

2. replace into

replace into first tries to insert data into the table. 1. If it is found that this row of data already exists in the table (determined by the primary key or unique index), delete this row of data first, and then insert the new data. 2. Otherwise, insert the new data directly.

--Insert SQL as follows:
replace into person (id,name,age,address) values(3,'那谁',23,'赣苏省'),(4,'我天',25,'浙江省');

First, we restore the data in the table, and then after the insert operation, we find that the data with id 3 has changed and the data with id 4 has been added.

3. insert on duplicate key update

insert on duplicate key update If on duplicate key update + field update is specified at the end of the insert into statement, the information will be updated according to the description of the subsequent field update when duplicate data appears (determined by the primary key or unique index).

--Insert SQL as follows:
insert into person (id,name,age,address) values(3,'那谁',23,'赣苏省') on duplicate key update name='那谁', age=23, address='赣苏省';

First, we restored the data in the table, and then when performing the insert operation, we found that the data with id 3 had changed, so we performed an update operation.

We can choose the method according to our business needs.

The above are the details of three methods to prevent MySQL from inserting data repeatedly. For more information on preventing MySQL from inserting data repeatedly, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Three ways to avoid duplicate insertion of data in MySql
  • MySQL uses UNIQUE to implement non-duplicate data insertion
  • How to prevent MySQL from inserting duplicate records
  • Several ways to avoid duplicate insertion of records in MySql
  • 4 ways to avoid duplicate insertion of data in Mysql

<<:  JavaScript to achieve text expansion and collapse effect

>>:  Common ways to optimize Docker image size

Recommend

How to create a Django project + connect to MySQL

1: django-admin.py startproject project name 2: c...

Detailed explanation of Vuex environment

Table of contents Build Vuex environment Summariz...

Solution for Docker Swarm external verification load balancing not taking effect

Problem Description I created three virtual machi...

How to install and configure mysql 5.7.19 under centos6.5

The detailed steps for installing mysql5.7.19 on ...

Installation process of CentOS8 Linux 8.0.1905 (illustration)

As of now, the latest version of CentOS is CentOS...

Tutorial on installing phpMyAdmin under Linux centos7

yum install httpd php mariadb-server –y Record so...

Introduction to common MySQL storage engines and parameter setting and tuning

MyISAM, a commonly used storage engine in MySQL c...

Detailed explanation of Linux text processing tools

1. Count the number of users whose default shell ...

Vue realizes web online chat function

This article example shares the specific code of ...

How to implement mysql database backup in golang

background Navicat is the best MySQL visualizatio...

Tips to prevent others from saving as my web page and copying my site

Nowadays, copying websites is very common on the I...

IE6 space bug fix method

Look at the code: Copy code The code is as follows...

Steps to package and release the Vue project

Table of contents 1. Transition from development ...

Linux uses join -a1 to merge two files

To merge the following two files, merge them toge...

Circular progress bar implemented with CSS

Achieve results Implementation Code html <div ...