How to find 3rd Highest salary in Sql.

Vipin Rasal
1y

With help of subquery( inner query and outer query)

Query- select max(esal) from emp where esal <(select max (esal) from emp where esal <(select max(esal)

from emp))

Supriya Shinde
1y

select top 1 salary from (select TOP 3 salary from emp order by salary desc)

as comp order by salary asc

Shaleem Mohammad
3y

Select top 1 salary

from

(Select top 3 salary

From table_name

Order by salary desc ) as comp

order by salary asc

Rohini pasupuleti
3y

By using" order by" query

Add answer anonymously...
Cognizant Associate Data 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

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