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
Differentiate between pl/sql and sql?
what is query cache in mysql? : Sql dba
What normalization means?
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba
what are sequences
Why procedure is used in sql?
Is sql better than access?
What is row_number () in sql?
Can we join same table in sql?
How do you declare a user-defined exception?
what are date and time intervals? : Sql dba
Do foreign keys improve performance?
Can function return multiple values in sql?
what are the non-standard sql commands supported by 'mysql'? : Sql dba
Is sql microsoft?