Find out the 3rd highest salary?
Answer Posted / srikanth
select q.sal
from emp q
where 3=(select distinct(count(b.sal))
from emp b
where q.sal<=b.sal)
| Is This Answer Correct ? | 17 Yes | 10 No |
Post New Answer View All Answers
how can we know the number of days between two given dates using mysql? : Sql dba
Which are the different case manipulation functions in sql?
What is the least restrictive isolation level? : Transact sql
What is the use of & in pl sql?
Is join an inner join?
How do I view a table in sql?
what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?
How to avoid using cursors?
What are the ddl commands?
How to display the records between two range in Oracle SQL Plus?
What kind of join is join?
what are properties of a transaction? : Sql dba
discuss about myisam index statistics collection. : Sql dba
what is a composite key ? : Sql dba
Is it possible to create the following trigger: before or after update trigger for each row?