Mysql insert update statement

Source: Internet
Author: User
Tags mysql insert


When the mysql insert update statement runs this statement, it automatically determines whether there is a duplicate primary key in the database with the record you want to insert. If yes, it is updated. If not, the insert format is as follows: insert into tablename (Field 1, Field 2) select * from (select? Field 1 ,? Field 2 ,.... from dual) as B on duplicate key update field 1 = B. field 1 ,.... example of www.2cto.com: insert into trtb_dim_top_cats (cid, parent_cid, name, is_parent, status, sort_order, lev) select * from (select? Cid ,? Parent_cid ,? Name ,? Is_parent ,? Status ,? Sort_order ,?
Levfrom dual) as B on duplicate key update cid = B. cid, parent_cid = B. parent_cid, name = B. name, is_parent = B. is_parent, status = B. status,
Sort_order = B. sort_order, column = B. Column

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.