select
answer_date,
author_id,
count(*) as answer_num
from answer_tb
group by answer_date,author_id
having answer_num >= 3
order by answer_date,author_id

这题比较简单