select answer_date, author_id, count(issue_id) as answer_count
from answer_tb
group by answer_date, author_id
having answer_count >= 3
order by answer_date, author_id;