mysql - Update and select count at the same time taken too much time -
i have mysql statement:
update student_performance_cache spc set badges = (select count(ub.mb_no) user_badges ub ub.mb_no=spc.student_id)
i got problems query taken time when data become larger. how can improve mysql statement , make faster?
Comments
Post a Comment