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