How to update table1 with data from table2 where id is equal?
table1
table2
id
When I run the following upda
You can try this:
UPDATE TABLE1 SET column_name = TABLE2.column_name FROM TABLE1, TABLE2 WHERE TABLE1.id = TABLE2.id