Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 497343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:46:20+00:00 2026-05-13T05:46:20+00:00

(MYSQL) Is there any significant performance differences, or other reasons not to use the

  • 0

(MYSQL) Is there any significant performance differences, or other reasons not to use the INSERT ... ON DUPLICATE UPDATE sql to update by PK/insert new stuff?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T05:46:20+00:00Added an answer on May 13, 2026 at 5:46 am

    No, there is none.

    INSERT ON DUPLICATE KEY UPDATE will locate the record and update it just as a simple UPDATE would do.

    In fact this is just a UPDATE, followed by an INSERT should the UPDATE fail.

    INSERT ON DUPLICATE KEY UPDATE can be a faster alternative to a grouped update (when you have a source table with multiple records per key and want to increment the target table once per record).

    If there are few values per key, this query:

    INSERT
    INTO    t_target
    SELECT  target, cnt
    FROM    t_sparse d
    ON DUPLICATE KEY UPDATE
            t_target.cnt = t_target.cnt + d.cnt
    

    will be more efficient than this one:

    INSERT
    INTO    t_target
    SELECT  target, cnt
    FROM    (
            SELECT  target, SUM(cnt) AS cnt
            FROM    t_sparse di
            GROUP BY
                    target
            ) d
    ON DUPLICATE KEY UPDATE
            t_target.cnt = t_target.cnt + d.cnt
    

    See this article in my blog for more detail:

    • Efficient INSERT ON DUPLICATE KEY UPDATE
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way in the SQL language or in MySQL (or other DBMA)
I need to design database for SQL Server, is there any MySQL workbench like
In MySQL are there any restrictions (and/or) practical reasons against using a numbering system
Is there any way (native MySQL functions or SQL syntax) to encrypt the columns
Are there any popular Mysql rss feeds you guys can recommend? IBM has random
Is there any way in MySQL to only log deletes? I tried using the
Is there any possibility of changing the MySQL DB table's field name or adding
Are there any documented techniques for speeding up mySQL dumps and imports? This would
Are there any 64-bit version RPMs of MySQL GUI Tools?
Is there any limitations on the size of a MySQL database that can be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.