select author, month, fans_growth_rate, sum(delta_fans)over(partition by author order by month rows between unbounded preceding and current row) total_fans from (select author,date_format(start_time,'%Y-%m') month,round(avg(case if_follow when 1 then 1 when 2 then -1 else 0 end),3) fans_growth_rate,...