Detailed explanation of replace into example in mysql

Detailed explanation of replace into example in mysql

Detailed explanation of replace into example in mysql

replace into is similar to insert, except that 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 new data directly.

Please note that the table into which data is inserted must have a primary key or a unique index! Otherwise, replace into will directly insert the data, which will result in duplicate data in the table.

There are three ways to write replace into in MySQL:

The code is as follows:

 replace into table(col, ...) values(...)
 replace into table(col, ...) select ...
 replace into table set col=value, ...

Extension: mysql gets the last primary key corresponding to the insertion (generally users get the primary key order number of the order table)

SELECT LAST_INSERT_ID() from dual

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

You may also be interested in:
  • Usage and difference analysis of replace into and insert into on duplicate key update in MySQL
  • A Brief Analysis of MySQL replace into Statement (Part 2)
  • A brief analysis of MySQL replace into statement (I)
  • Detailed explanation of the usage of replace into statement in MySQL
  • A brief analysis of the usage of MySQL replace into
  • Detailed examples of replace and replace into in MySQL into_Mysql

<<:  JavaScript implements countdown on front-end web page

>>:  Linux kernel device driver Linux kernel basic notes summary

Recommend

How to use positioning to center elements (web page layout tips)

How to center an element in the browser window He...

Experience in solving tomcat memory overflow problem

Some time ago, I submitted a product version to t...

Linux kernel device driver kernel debugging technical notes collation

/****************** * Kernel debugging technology...

JavaScript implementation of the back to top button example

This article shares the specific code for JavaScr...

Web designer is a suitable talent

<br />There is no road in the world. When mo...

How to quickly build an FTP file service using FileZilla

In order to facilitate the storage and access of ...

How to implement the webpage anti-copying function (with cracking method)

By right-clicking the source file, the following c...

Detailed explanation of the application of the four states of hyperconnection

Although you think it may be a browser problem, i...

js native carousel plug-in production

This article shares the specific code for the js ...

Vue custom optional time calendar component

This article example shares the specific code of ...

Native js to realize bouncing ball

On a whim, I wrote a case study of a small ball b...

mysql 8.0.19 winx64.zip installation tutorial

This article records the installation tutorial of...

How to install Zookeeper service on Linux system

1. Create the /usr/local/services/zookeeper folde...

Solution to the problem that Navicat cannot remotely connect to MySql server

The solution to the problem that Navicat cannot r...