书中人
Mysql批量查询更新另一张表
2023-09-28
0 评论
update xxx a
INNER JOIN xxx b on
a.name
=
b.name
set
a.id
=
b.id
where b.del = 0