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 are the different types of database management systems?
how to create a new table by selecting rows from another table in mysql? : Sql dba
Is nosql relational?
is mysql query is case sensitive? : Sql dba
Does truncate table reset auto increment?
How to add new employee details in an employee_details table with the following details
What is sap sql?
Which is better join or inner query?
What are %type and %rowtype for?
Define select, insert, create, delete, update, drop keywords
What is plpgsql language?
What is data type in database?
What is compiled query?
How exception is different from error?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?