select author,month,fans_growth_rate, sum(total_fans) over(partition by author order by month) as total_fans from (select author,month, round(sum(follows)/count(author),3) as fans_growth_rate, sum(follows) as total_fans from( select author,substring_index(start_time,'-',2) as month, ...