how to check the 3rd max salary from an employee table?
Answer Posted / akula
select min(sal) from(select distinct(sal) from emp order by sal desc) where rownum<=3;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain foreign key in sql?
What do you know by pl/sql cursors?
What are the advantages of normalization?
What are the main features of cursor?
What is query execution plan in sql?
What are expressions?
How to Declare Fixed Length String Value In PL SQL
What is the main reason behind using an index?
Which type of cursor is used to execute the dml statement?
is mysql query is case sensitive? : Sql dba
Describe sql comments?
I need a function for a train ticket reservation please answer it thanks in advance
What is sql table?
what are the differences between require and include, include_once and require_once? : Sql dba
Is record in oracle pl sql?