LeetCode 185: Department Top Three Salaries
Problem Restatement We are given two tables: Employee and Department . Employee stores employee information. Column Type id int name varchar salary int departmentId int Department stores department information. Column Type id int name varchar Each employee belongs to a department through Employee.departmentId . We need to find employees who are high earners in their department. A high earner is an employee whose salary is in the top three unique...