2024-12-01

如何用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)
登录后复制

以上就是如何用MySQL UPDATE语句和LEFT JOIN更新学生表中每个学生的最高分数?的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/1122840.html

发表回复

Your email address will not be published. Required fields are marked *