How to get employee name from employee table which is the
fiveth highest salary of the table
Answer Posted / anil alpati
SELECT employee_name FROM employee order by salary desc limit 1 offset 5 ;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is left join in postgresql?
What is a sql select statement?
What is trigger point?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
What is pl/sql table? Why is it used?
Are dml statements autocommit?
Can you have a foreign key without a primary key?
What is difference between hql and sql?
what are the advantages of sql ? : Sql dba
What are sql injection vulnerabilities?
What is raw datatype in sql?
How many subqueries can be nested in a statement?
How can check sql version from command line?
what are the advantages of using stored procedures? : Sql dba
how to select first 5 records from a table? : Sql dba