select
	count(*) as num
from answer_tb a
join issue_tb
	using (issue_id)
where issue_type = 'Career'
	and a.author_id in (
		select
			author_id
		from answer_tb
		join issue_tb
			using (issue_id)
		where issue_type = 'Education')