select uid,nick_name,achievement from (select uid,date_format(start_time,'%y%m') as month_start,'exam' as tag from exam_record where year(start_time)=2021 union all select uid,date_format(submit_time,'%y%m')as month_start,'practice' as tag from practice_record) as exam_practice left join user_info u...