sudhakar


{ City } pune
< Country > india
* Profession *
User No # 88475
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { sudhakar }
Questions Answers Category Views Company eMail




Answers / { sudhakar }

Question { Syntel, 9440 }

how 2 find out nth salary.plz write sql qurires


Answer

Nth Highest salary:

Select Min (salary) from Employees
where
salary IN (Select TOP n salary from Employees order by salary DESC)
Here n= any number

Is This Answer Correct ?    0 Yes 0 No