find the third highest salary?
Answers were Sorted based on User's Feedback
Answer / justin
SELECT sal FROM empORDER BY sal DESC LIMIT 2 , 1
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / purushotham
select level,max(sal)
from table
where level=3
connect by prior sal>sal
group by level
Is This Answer Correct ? | 0 Yes | 6 No |
Answer / mousumi dalai
select min(sal) from emp where sal in
(select sal from emp order by sal desc where ROWCOUNT <=3) ;
Is This Answer Correct ? | 9 Yes | 36 No |
How can I make sql query run faster?
How do temporal tables work?
What do you mean by stored procedures? How do we use it?
How many postgresql users are there, worldwide?
How do I sort a table in sql?
What is the difference between explicit and implicit cursors in oracle?
how to shutdown mysql server? : Sql dba
Can a varchar be a primary key?
Does varchar need length?
Explain what is table in a database?
What is dynamic query?
How to come back in normal stage in Mutating Table if mutating table is locked or update data?