select answer_date, round(count(*)/count(distinct author_id),2) per_num
from answer_tb
group by answer_date
order by answer_date;