私はこれに対する解決策を探していて、この投稿を思いつきました。しかし、SQLを実行すると構文エラーが発生します。
mysqlドキュメントを参照する
一般的なステートメントは次のようになります:
update table t1, table t2
set t1.field1 = t2.field2, ..., t1.fieldN = t2.fieldN
where t1.someid = t2.someid and t1.fieldX = '...' and t2.fieldY = '...'