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

  • SEARCH
  • Home
  • 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 6361419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:46:30+00:00 2026-05-24T23:46:30+00:00

I try to update some rows of a table to a different table, for

  • 0

I try to update some rows of a table to a different table, for now on I just find out how to insert a row from one table to another, like:

INSERT INTO dialecte_org_5.tb_data_iae (
    SELECT * FROM dialecte_org_88.tb_data_iae WHERE id_dialecte = 2413
);

What could be the same statement but for an update?
Is there a way to make something like this, if row exists -> “update”, if not “insert”

Thx

  • 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-24T23:46:30+00:00Added an answer on May 24, 2026 at 11:46 pm

    For an insert, You usually want to specify the full field list for both the insert statement and the select (http://dev.mysql.com/doc/refman/5.5/en/insert.html):

    INSERT INTO dialecte_org_5.tb_data_iae (field1, field2, field3)
    SELECT field1, field2, field3
    FROM dialecte_org_88.tb_data_iae WHERE id_dialecte=2413;
    

    And an update statement is more like this (http://dev.mysql.com/doc/refman/5.0/en/update.html):

    UPDATE dialecte_org_5.tb_data_iae t1
    INNER JOIN dialecte_org_88.tb_data_iae t2 ON t1.id = t2.id
    SET t1.field1 = t2.field1, t1.field2 = t2.field2, t1.field3 = t2.field3
    WHERE t2.id_dialecte=2413
    

    You also can use REPLACE INTO, which does both, but is MySQL specific, not supported by other RDBMS’s (http://dev.mysql.com/doc/refman/5.0/en/replace.html):

    REPLACE INTO dialecte_org_5.tb_data_iae t1
    INNER JOIN dialecte_org_88.tb_data_iae t2 ON t1.id = t2.id
    SET t1.field1 = t2.field1, t1.field2 = t2.field2, t1.field3 = t2.field3
    WHERE t2.id_dialecte=2413
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can read rows/columns just fine, but I can't update, insert or delete. try{
I have some code to update a database table that looks like try {
I have a table where I wish to update some of the rows. All
I continually get these errors when I try to update tables based on another
I have a DAO class which I'm using to try select/update/insert with hibernate and
When I try to install/update any plugin from Help -> Install New Software I
I try to realize a link (in fact many links) that update a table
I have a php page that echos out rows from a database. I want
I have a table with some persistent data in it. Now when I query
So I am trying to Delete some items from the database before I Insert

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.