Update and insert to one table from another

Hayk Melkonyan

I have two tables:

table1: (ID, Code, Name)
table2: (ID, Code, Name) with same columns

I want to to insert data from table1 to table2 or update columns if that exists in table2 (table1.ID = table2.ID)

What is the simple way to do this?

WITH OUT MERGE

TheGameiswar
Merge table2 as target
using table1  as source
on
target.id=source.id
When matched 
Then
update 
set target.id=source.id,
    target.name=source.name
When not matched by Target Then
INSERT (id, name) VALUES (id, name);

There are some issues with Merge statement,so it should be used with caution..

Further i recommend ,using merge as two seperate DML statements like below..

insert into table2
select * from table1 t1 where not exists (select 1 from table2 t2 where t2.id=t1.id)

update t2
set 
t2.id=t1.id,
t2.name=t1.name
from 
table1 t1
join
table2 t2
on t1.id=t2.id

Reasons being stated by Paul White here in his detailed answer..

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Insert distinct values from one table into another table

From Dev

select from one table, insert into another table oracle sql query

From Dev

rails insert record from one table to another table with matched attributes

From Dev

Netezza UPDATE from one table to another

From Dev

access - one form, update one table and insert to another

From Dev

insert records into table where one filed is from another table

From Dev

Update and insert to one table from another

From Dev

Insert and update from table in tmp database to table in another database

From Dev

Insert from one table to another (different databases)

From Dev

Insert records into one table using key from another table

From Dev

Transfer data from one table to another on insert

From Dev

How to insert record from one table to another?

From Dev

How to update one table from another table?

From Dev

update one table from another selected table

From Dev

Procedure to insert a data from one table to another table after calculations

From Dev

Update one table with the results from another

From Dev

How to insert values into one table from another table

From Dev

Insert from another table, and update if key exists, possible in one query?

From Dev

Update specific rows from one table to another

From Dev

Insert one table and update another with shellscript

From Dev

Insert and update from table in tmp database to table in another database

From Dev

Trigger update the same table with data from another table after insert

From Dev

Cron php update/insert one sql table from another and delete data from old table

From Dev

How to update a table from one database to another?

From Dev

Insert id's from one table to another based on another column

From Dev

Insert from one table into another with commit Intervals

From Dev

MySQL : IF EXISTS THEN UPDATE ELSE INSERT from one table to another using IF ELSE statement

From Dev

Insert Data From One Table To Another - MySQL

From Dev

How to insert multiple records from one table into another on update of third table in MySQL

Related Related

  1. 1

    Insert distinct values from one table into another table

  2. 2

    select from one table, insert into another table oracle sql query

  3. 3

    rails insert record from one table to another table with matched attributes

  4. 4

    Netezza UPDATE from one table to another

  5. 5

    access - one form, update one table and insert to another

  6. 6

    insert records into table where one filed is from another table

  7. 7

    Update and insert to one table from another

  8. 8

    Insert and update from table in tmp database to table in another database

  9. 9

    Insert from one table to another (different databases)

  10. 10

    Insert records into one table using key from another table

  11. 11

    Transfer data from one table to another on insert

  12. 12

    How to insert record from one table to another?

  13. 13

    How to update one table from another table?

  14. 14

    update one table from another selected table

  15. 15

    Procedure to insert a data from one table to another table after calculations

  16. 16

    Update one table with the results from another

  17. 17

    How to insert values into one table from another table

  18. 18

    Insert from another table, and update if key exists, possible in one query?

  19. 19

    Update specific rows from one table to another

  20. 20

    Insert one table and update another with shellscript

  21. 21

    Insert and update from table in tmp database to table in another database

  22. 22

    Trigger update the same table with data from another table after insert

  23. 23

    Cron php update/insert one sql table from another and delete data from old table

  24. 24

    How to update a table from one database to another?

  25. 25

    Insert id's from one table to another based on another column

  26. 26

    Insert from one table into another with commit Intervals

  27. 27

    MySQL : IF EXISTS THEN UPDATE ELSE INSERT from one table to another using IF ELSE statement

  28. 28

    Insert Data From One Table To Another - MySQL

  29. 29

    How to insert multiple records from one table into another on update of third table in MySQL

HotTag

Archive