select count(a.author_id)
from (select distinct author_id
from answer_tb right join issue_tb using(issue_id)
where issue_type="Education")a
inner join (select distinct author_id
from answer_tb right join issue_tb using(issue_id)
where issue_type="Career")b
on a.author_id=b.author_id