```SELECT
	answer_date,
	author_id,
	count( issue_id ) author_cnt 
FROM
	answer_tb 
GROUP BY
	answer_date,
	author_id 
HAVING
	count( issue_id ) >= 3 
ORDER BY
	answer_date ASC,
	author_id ASC