select count(*) as num
from answer_tb a
join issue_tb i
on a.issue_id = i.issue_id
where a.author_id in 
(

select distinct a.author_id

from answer_tb a
join issue_tb i
on a.issue_id = i.issue_id

where issue_type='Education')
and issue_type='Career'

简单