select a.author,a.month,fans_growth_rate,b.fans as total_fans from (select author, date_format(start_time,'%Y-%m') as month, round((sum(if(if_follow=1,1,0))-sum(if(if_follow=2,1,0)))/count(start_time),3) as fans_growth_rate from tb_user_video_log as a left join tb_video_info as b using(video_id) whe...