find out the third highest salary?
Answer Posted / bhagayraj
SELECT *
FROM Emp e1
WHERE (2) = (
SELECT COUNT(DISTINCT(e2.Salary))
FROM Emp e2
WHERE e2.Salary > e1.Salary)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a trace file and how is it created in oracle?
What is the difference between sharding and partitioning?
Explain what are the advantages of views?
What is a select query statement in oracle?
Explain about your project and its relation to the current job position you are applying to?
Can we create trigger on materialized view in oracle?
What are the database administrators utilities available?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
How to define a data source name (dsn) in odbc manager?
How to select all columns of all rows from a table in oracle?
Is postgres faster than oracle?
How to retrieve data from an cursor to a record?
How to use null as conditions in oracle?
what is difference between sql plus and sql*plus? (not sql and sql plus).
What is the difference between substr & instr functions?