How to update table1 with data from table2 where id is equal?
table1
table2
id
When I run the following upda
here's the correct syntax of UPDATE with join in MySQL
UPDATE
MySQL
UPDATE table1 a INNER JOIN table2 b ON a.ID = b.ID SET a.value = b.value