根据另一个表列更新一个表列

时间:2019-01-07 07:08:44

标签: mysql sql

我有两个表:

enter image description here

我想更新TableA.id = TableB.id,其中TableA.elements = TableB.elements

1 个答案:

答案 0 :(得分:1)

使用加入

update tablea a
 join tableb b  on a.elements=b.elements
set a.id=b.id