How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / ajeet
SELECT first_name, salary FROM employees E1
WHERE (5) = (SELECT COUNT(DISTINCT(E2.salary))
FROM employees E2
WHERE E1.salary < E2.salary)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what are the advantages and disadvantages of cascading style sheets? : Sql dba
What are triggers in sql?
what is isam? : Sql dba
Is oracle sql free?
How to raise user-defined exception with custom sqlerrm ?
Is left join and outer join same?
Explain ddl statements in pl/sql?
How to make a copy values from one column to another in sql?
What is the use of & in pl sql?
What is a sql profiler?
What is coalesce sql?
How do I truncate a word?
What is data control language (dcl)?
How does an execution block start and end in pl sql?
what is oltp (online transaction processing)? : Sql dba