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 (3) > (SELECT COUNT(DISTINCT(E2.salary))
FROM employees E2
WHERE E1.salary > E2.salary)
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is sql and also describe types of sql statements?
What is the difference between a subquery and a join?
How to rename a table?
How to Execute a Package in PL/SQL.?
How do I get sql certification?
What are different types of queries in sql?
What does count (*) do in sql?
What is fmtonly in sql?
Why stored procedure is better than query?
What are variables in pl sql?
Why we use join in sql?
What is pl sql commands?
What is sql analyzer?
Who developed sql?
what is a field in a database ? : Sql dba