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 'mysqlshow'? : Sql dba
What is the purpose of the sql select top clause?
How we can update the view?
What is difference between primary and secondary key?
How to get help at the sql prompt?
what are the different tables present in mysql? : Sql dba
What are the types of queries in sql?
Why do we need pl sql?
How to pipe multiline string to isql?
What are the different types of joins in sql?
how to add a new column to an existing table in mysql? : Sql dba
When sql appeared?
Why does sql need a server?
Does sql use python?
Why do we go for stored procedures?