Highest Salary in each department

前端 未结 30 1469
没有蜡笔的小新
没有蜡笔的小新 2021-01-30 22:16

I have a table EmpDetails:

DeptID      EmpName   Salary
Engg        Sam       1000
Engg        Smith     2000
HR          Denis     1500
HR                  


        
30条回答
  •  清歌不尽
    2021-01-30 23:05

    The below listed query will list highest salary in each department.

    select deptname, max(salary) from department, employee where 
      department.deptno=employee.deptno group by deptname;
    

    I executed this query successfully on Oracle database.

提交回复
热议问题