You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select m.fname as 'manager name', s.fname as 'supervisor name', dname as 'department name', max(e.salary) as 'maximum salary', min(e.salary) as 'minimum salary', count(e.ssn) as 'total employees'
from employee as m join employee as e on e.Dno = m.Dno, department, employee as s
where m.ssn = Mgr_Ssn AND s.ssn = m.Super_Ssn AND m.Dno = Dnumber