MySQL table data does not exist then insert, otherwise update data

Source: Internet
Author: User

There are times when we manipulate database tables, but when we insert data into a table, we encounter data that already exists in the table for that ID or data without that ID, insert it directly when there is no data for that ID, and then update the data for that ID if you encounter data that already exists for that ID.

Here we use the REPLACE into statement, which is an enhanced version of the INSERT INTO statement that can do this, but only if the data in the table has a primary key that is unique, or replace into is treated as an INSERT INTO statement, inserting duplicate data.

For example:

REPLACE into TestUser (id,letters) VALUES (2, ' dfsdf ')

The effect is as follows:

  

MySQL table data does not exist then insert, otherwise update data

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.