Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL UPDATE syntax with multiple tables using WHERE clause

Case:

How to update table1 with data from table2 where id is equal?

Problem:

When I run the following update statement, it updates all the records in table1 (even where the id field in table1 does not exist in table2).

How can I use the the multiple update table syntax, to update ONLY the records in table1 ONLY where the id is present in table2 and equal?

UPDATE table1,table2
SET table1.value=table2.value 
WHERE table2.id=table1.id

Thanks in advance.

like image 472
Ben Avatar asked Feb 23 '13 06:02

Ben


2 Answers

here's the correct syntax of UPDATE with join in MySQL

UPDATE  table1 a
        INNER JOIN table2 b
            ON a.ID = b.ID
SET     a.value = b.value 
  • SQLFiddle Demo
like image 163
John Woo Avatar answered Oct 24 '22 22:10

John Woo


EDIT For MySql it'll be

UPDATE table1 t1 INNER JOIN 
       table2 t2 ON t2.id = t1.id
   SET t1.value = t2.value 

sqlfiddle

Original answer was for SQL Server

UPDATE table1
   SET table1.value = table2.value 
  FROM table1 INNER JOIN 
       table2 ON table2.id=table1.id

sqlfiddle

like image 34
peterm Avatar answered Oct 24 '22 22:10

peterm