Find out the 3rd highest salary?
Answer Posted / a.jyothsna
select a.sal
from emp a
where 3=(select distinct(count(b.sal))
from emp b
where a.sal<=b.sal)
| Is This Answer Correct ? | 100 Yes | 45 No |
Post New Answer View All Answers
What is triggering circuit?
What is the difference between rename and alias?
What does fetching a cursor do?
How do you modify a trigger?
How are sql commands classified?
Why commit is not used in triggers?
What are sql triggers used for?
What is the default isolation level in sql server? : Transact sql
what is cursor and its type, what is ref cursor write a syntax to pass ref cursor into procedure out fucntion and call the procedure
What is prepared statement in sql?
What is java sql package?
What is spool?
Explain the the delete statements in sql?
Which query operators in sql is used for pattern matching?
Who is the owner of mysql database?