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:
|
<<: JavaScript implements countdown on front-end web page
>>: Linux kernel device driver Linux kernel basic notes summary
Table of contents MutationObserver API Features I...
How to center an element in the browser window He...
Some time ago, I submitted a product version to t...
/****************** * Kernel debugging technology...
This article shares the specific code for JavaScr...
<br />There is no road in the world. When mo...
In order to facilitate the storage and access of ...
By right-clicking the source file, the following c...
Although you think it may be a browser problem, i...
This article shares the specific code for the js ...
This article example shares the specific code of ...
On a whim, I wrote a case study of a small ball b...
This article records the installation tutorial of...
1. Create the /usr/local/services/zookeeper folde...
The solution to the problem that Navicat cannot r...