select
	answer_date,
    author_id,
    count(*) as answer_cnt
from answer_tb
where month(answer_date) = 11
group by answer_date, author_id
having answer_cnt >= 3
order by answer_date, author_id