Highest Salary in each department

前端 未结 30 1425
没有蜡笔的小新
没有蜡笔的小新 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 22:59

    If you just want to get the highest salary from that table, by department:

    SELECT MAX(Salary) FROM TableName GROUP BY DeptID
    

提交回复
热议问题