Query

select email, count(c.id) as cnt from tblboard b join tblcard c on b.id = c.boardid group by email order by cnt desc;