update join一次更新多个表 2022年8月6日 zhufenghua 留下评论 update 表 join 表2 这里的 join 可以是普通的 join ,也可以是 left join, full join 等 UPDATE employees LEFT JOIN merits ON employees.performance = merits.performance SET salary = salary + salary * 0.015 WHERE merits.percentage IS NULL;