select author, month, fans_growth_rate, sum(month_fans) over (partition by author order by month) 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(*),3) as fans_g...