How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / ramu
select employee_name,salary from employee order by salary desc limit 1 offset 4;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is dba in sql? : SQL DBA
Explain the methods used to protect source code of pl/sql.
what is normalization? : Sql dba
Are null values same as that of zero or a blank space?
Why plvtab is considered as the easiest way to access the pl/sql table?
What are triggers and its types?
What is a scalar value in sql?
How do I tune a sql query?
what is auto increment? : Sql dba
What is sql profiler in oracle?
What are actual parameters and formal parameters?
What is sql injection vulnerability?
What is the difference between having clause and where clause?
How do rank () and dense_rank () differ?
Can we create clustered index without primary key?