How to update table1 with data from table2 where id is equal?
table1
table2
id
When I run the following upda
UPDATE table1 SET table1.value = (select table2.value WHERE table2.id=table1.id)