how to check the 3rd max salary from an employee table?
Answer Posted / arjun
select min(sal) from (select sal from (select distinct(sal)
from emp order by sal desc) where rownum<4)
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is scalar function?
How to create a menu in sqlplus or pl/sql?
How do I send sql query results to excel?
What is difference between stored procedures and application procedures?
Why we use joins in sql?
What is group by in sql?
How is a PL/SQL code compiled?
What is a unique key and primary key and foreign key?
What is primary and foreign key?
Enlist the data types that can be used in pl/sql?
What does t sql mean?
Can we insert data into view?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
What is indexing in sql and its types?
Which query operators in sql is used for pattern matching?