select e.education,count(e.*) from tbl_departments d
inner join tbl_employees e on e.department_id=d.id
where d.department='经管学院'
group by e.education
select e.education,count(e.*) from tbl_departments d
inner join tbl_employees e on e.department_id=d.id
where d.department='经管学院'
group by e.education