sql >> Base de Datos >  >> RDS >> Mysql

Actualice la tabla mysql con datos de otra tabla

UPDATE table1 t1, table2 t2
SET t1.field_to_change = t2.field_with_data
WHERE t1.field1 = t2.field2;