Ritesh Profile Topics Started Replies Created Engagements Favorites Search replies: Forum Replies CreatedViewing 1 post (of 1 total)AuthorPosts November 19, 2015 at 12:26 pm in reply to: How to retrieve 3rd Max salary from a table in sql server? #5153 RiteshMemberyou can also use Sql rank() function like :select Empname,Empsalary from ( select Empname,Empsalary,rank() over (order by Empsalary desc) as ranking from tblemployee ) a where ranking = 3hope this helps…. AuthorPosts Viewing 1 post (of 1 total)