Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1062085
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:34:12+00:00 2026-05-16T18:34:12+00:00

For Finding nth highest salary I am using select salary from ( select distinct

  • 0

For Finding nth highest salary I am using

select salary from 
  (
   select distinct ROW_NUMBER() over (order by salary desc) as rownum,Salary
   from Employee
  )a
  where rownum=2

However if i have same salary like

70000
70000
60000
50000
50000

When executing the query i am getting second highest salary

70000 instead 60000 

how to avoid duplicates?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T18:34:13+00:00Added an answer on May 16, 2026 at 6:34 pm

    Although Mark has already provided one answer, I’d say that you’re using the wrong function. You don’t want the row number, you want the RANK. And based on how you want to handle duplicates, specifically you should be using DENSE_RANK.

    E.g.:

    SELECT salary FROM
    (
        SELECT DENSE_RANK() OVER (ORDER BY salary DESC) AS rank, salary
        FROM Employee
    ) T2
    WHERE rank=2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am finding a simple solution . I can select months in given interval
I was looking at the Golden Ratio formula for finding the nth Fibonacci number,
I was submitting a matrix exponentiation code in C language for finding the nth
Finding the angle between two vectors is not hard using the cosine rule .
Finding lots of mixed answers on this from Google - but mostly 2-3 years
Finding all the controls in a form by Using Reflection During the Run Time..
Finding the nth term in Fibonacci series f(n) = f(n-1) + f(n-2) can be
Finding closet div (in next column of a table) using jquery <td><input type=text name=username
Finding articles with ANY of a set of tags is a relatively simple join,
For finding the nearest neighbor, Space Partitioning is one of the algorithms. How does

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.