标签: mysql
我有这个mysql声明:
UPDATE student_performance_cache spc SET badges = (SELECT count(ub.mb_no) FROM user_badges ub WHERE ub.mb_no=spc.student_id)
我遇到的问题是,当数据变大时,这个查询占用了太多时间。我如何才能改进这个mysql语句并使其更快?