Write a query to find out the 2nd largest salary from Employees

AnswerBot
1y

Query to find 2nd largest salary from Employees

  • Use ORDER BY and LIMIT

  • Exclude the highest salary using subquery

  • Handle cases where there are ties

Lalit Roshankhede
1y

SELECT MAX(SALARY)

FROM Employee

WHERE SALARY < (SELECT MAX(SALARY) FROM Employee);

Help your peers!
Add answer anonymously...
Incedo Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter