Find out the 3rd highest salary?
Answer Posted / vikram kumar
SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP 3 salary
FROM employee
ORDER BY salary DESC) a
ORDER BY salary
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between cursor and trigger?
What is record in pl sql?
What is a constraint?
Why do we use function in pl sql?
Is sqlexception checked or unchecked?
How does postgresql compare to oracle/db2/ms sql server/informix?
How to call a javascript function from pl sql?
What is the difference between an inner and outer join?
how can we submit a form without a submit button? : Sql dba
What is partition by in sql?
what is bdb (berkeleydb)? : Sql dba
When to use inner join and left join?
Do we need commit after truncate?
How do I count rows in sql?
when is the use of update_statistics command? : Sql dba