How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / praveen
SELECT TOP 1 salary
FROM
(
select TOP 5 salary
FROM
employee
ORDER BY
salary DESC
) A
ORDER BY
salary
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Does inner join return duplicate rows?
What is compilation error in pl sql?
What is the difference between inner join and outer join?
Can we join tables without foreign key?
What is the need of a partition key?
What are some emotional triggers?
What is difference between inner join and cross join?
What is the sql*loader? : aql loader
what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba
What is acid property in a database?
What are the usages of sql?
How to write pl sql program in mysql command prompt?
What is program debugging?
Why use truncate instead of delete?
Is left join inner or outer?