Hello! 欢迎来到小浪资源网!


如何用MySQL UPDATE语句和LEFT JOIN更新学生表中每个学生的最高分数?


如何用MySQL UPDATE语句和LEFT JOIN更新学生表中每个学生的最高分数?

mysql update 语句 left join 提取多条数据中的最大字段值

问题:

对于 student 表和 score 表

  • student 表结构:id, name, score
  • score 表结构:id, student_id, score

如何使用 mysql update 语句结合 left join,将 student 表中的 score 字段更新为对应 score 表中最大的 score 值?

解答:

update student set score=(select max(score) from score where score.student_id=student.id)

相关阅读