
Asked in Amazon
How can you find the top 2 salaries for each department in SQL?

AnswerBot
4mo
Use SQL query with window functions to find top 2 salaries for each department.
Use PARTITION BY clause to partition the data by department.
Use ORDER BY clause to order the salaries in descending order...read more
Rohit ਰੋਹਿਤ
1y
with temp as (Select department, salary, row_number() over(partition by department order by salary desc) top_sal
from emp)
select department, salary
from temp
where top_sal <= 2
Help your peers!
Add answer anonymously...
Interview Questions Asked to Research Analyst at Other Companies
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

