Instance description: "MySQL" inserts _ MySQL when the record does not exist

Source: Internet
Author: User
Example: MySQL inserts a record when the record does not exist. MySQL inserts the record if the record does not exist:

Example: insert multiple records

Suppose there is a clients table with the primary key of client_id, you can use the following statement:

Insert into clients

(Client_id, client_name, client_type)

SELECT supplier_id, supplier_name, 'Advertising'

FROM suppliers

WHERE not exists (select * from clients

Where clients. client_id = suppliers. supplier_id );

Example: insert a single record

Insert into clients

(Client_id, client_name, client_type)

SELECT 10345, 'IBM ', 'Advertising'

FROM dual

WHERE not exists (select * from clients

Where clients. client_id = 10345 );

Using dual as the table name allows you to directly keep up with the values of the fields to be inserted after the select statement, even if these values do not exist in the current table.

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.