Mysql replace into instance details

Source: Internet
Author: User

Mysql replace into instance details

Mysql replace into instance details

Replace into is similar to insert. The difference is that replace into first tries to insert data into the table. Mysql replace into instance details

1. If this row of data is found in the table (determined based on the primary key or unique index), delete the row of data and insert new data.

2. Otherwise, insert new data directly.

Note that the table to which data is inserted must have a primary key or a unique index! Otherwise, replace into inserts data directly, which leads to duplicate data in the table.

In MySQL, replace into can be written in three ways:

The Code is as follows:

Replace into table (col,...) values (...)

Replace into table (col,...) select...

Replace into table set col = value ,...

Extension: mysql obtains the last primary key corresponding to the insert (generally, the user obtains the primary key Order Number of the Order table)

SELECT LAST_INSERT_ID () from dual

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.