how to check the 3rd max salary from an employee table?
Answer Posted / tushar
select max(sal) from ( select sal from emp group by sal order by sal) where rownum<4;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Is there any restriction on the use of union in embedded sql?
What is sql basics?
How to create your own reports in sql developer?
How can you know that statistics should be updated?
what is the difference between char and varchar data types? : Sql dba
What is sql*plus?
How do you update f as m and m as f from the below table testtable?
What is trigger explain it?
What are keys in sql?
Is foreign key mandatory?
What is pl/sql language case sensitive?
what is 'mysqld'? : Sql dba
what is the difference between cluster and non cluster index? : Sql dba
What are different types of sql commands?
What's the difference between a primary key and a clustered index?