What is the sql query to find the employee who has Nth
maximum salary?

Answers were Sorted based on User's Feedback



What is the sql query to find the employee who has Nth maximum salary?..

Answer / naresh

Select * From TableName T1 Where
(N-1) = (Select Count(Distinct(E2.ColumnName))
From TableName T2 Where T2.ColumnName > T1.ColumnName)

Is This Answer Correct ?    1 Yes 0 No

What is the sql query to find the employee who has Nth maximum salary?..

Answer / naweed ahmad

SELECT * FROM Emp E1 WHERE n-1 =
(SELECT COUNT(DISTINCT Sal) FROM Emp E2 WHERE E1.Sal <
E2.Sal)order by Sal desc

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle AllOther Interview Questions

which one is currently in used software cmpanies.

0 Answers  


Where would you look for errors from the database engine?

2 Answers   Fintellix,


What is database schema?

4 Answers   Infosys,


What is supporting issues GL AP and AR?

0 Answers   Oracle,


What is the mandatory setup in cyclecount ?

0 Answers   Oracle,






What are different types of receipt reversals ? Explain them : oracle accounts receivable

0 Answers  


what is the difference between TRUNCATE and DELETE command in SQL

23 Answers   ICICI, Saama Tech, SkyTech, TCS,


statement string in open is null or 0 length ORA-40735

1 Answers   RoboSoft, Unilog,


Differentiate between standard remittance and bills receivable remittance : oracle accounts receivable

0 Answers  


What is difference b/w Credit memo and Adjustment in AR.

1 Answers   Oracle,


What is the use of lockboxes? Steps for lock box : oracle accounts receivable

0 Answers  


How would you go about increasing the buffer cache hit ratio?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)