/* select A.author, A.month, round((A.addFanscnt-A.subtrFanscnt)/A.videoCnt,3) fans_growth_rate, sum(addFansMonth) over(partition by A.author order by A.month) total_fans from ( select tvi.author, date_format(tvl.start_time,'%Y-%m') month , count(if(tvl.if_follow=1,1,null)) addFanscnt, count(if(tvl....