Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider I have two tables/columns:

Employee - > EmpId, DeptNo, EmpName, Salary
Department -> DeptNo, DeptName

Write a query to get employee names who is having maximum salary in all of the departments. I have tried this:

Select max(salary),empname 
from Employee 
where deptno = (select deptno 
                from department
                where deptname in('isd','it','sales')

Is it correct? Actually it's a interview question.

share|improve this question
Can you rewrite the requirements? The employee with maximum salary for every department? – ypercube Dec 19 '12 at 15:06
@ypercube, yes you are right – TempUser Dec 19 '12 at 15:07

migrated from dba.stackexchange.com Dec 19 '12 at 15:31

2 Answers

This is an example of groupwise max mysql pattern. One way to do it would be:

    SELECT e.salary, e.name, d.deptname
    FROM Employee AS e 
     JOIN (
       SELECT max(salary) AS max_sal, deptno
       FROM Employee
       GROUP BY deptno
     ) AS d_max ON (e.salary=d_max.max_sal AND e.deptno=d_max.deptno)
     JOIN Department AS d ON (e.deptno = d_max.deptno)

Though it will return more than one row for a department if more than one employee has a maximum salary in a department

share|improve this answer

Personally I'd use a cte and row_number for a question like this. For example:

with myCTE as
(
    select e.empName, e.salary, d.deptName, 
        row_number() over (partition by e.deptNo order by e.salary desc) as rn
    from Employee as e
    inner join Department as d
        on d.DeptNo=e.DeptNo
)

select m.empName, m.deptName, m.salary
from myCTE as m
where m.rn=1

In the case of ties (two employees in the same department have the same max salary) then this is non-deterministic (it will just return one of them). If you want to return both of them then change the row_number to a dense_rank.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.