Ursprüngliche Tabelle ist Tabelle1 und Sicherungstabelle ist Tabelle2
UPDATE table1 t1 JOIN table2 t2 ON t1.id = t2.id
SET t1.col1 = t2.col1, t1.col2 = t2.col2, ...
Ursprüngliche Tabelle ist Tabelle1 und Sicherungstabelle ist Tabelle2
UPDATE table1 t1 JOIN table2 t2 ON t1.id = t2.id
SET t1.col1 = t2.col1, t1.col2 = t2.col2, ...