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...
Top Cognizant Associate Data Engineer interview questions & answers
Popular interview questions of Associate Data Engineer
Top HR questions asked in Cognizant Associate Data Engineer
Stay ahead in your career. Get AmbitionBox app
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