how to check the 3rd max salary from an employee table?
Answer Posted / neeraj
SELECT TOP 1 * FROM [SELECT TOP 3 * FROM Emp_Salary
ORDER BY Salary DESC;]
ORDER BY Salary;
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
How to order siblings in oracle hierarchy queries?
What are the string functions in sql?
What is difference between cursor and trigger?
What are the operators used in select statements?
Is sql an operating system?
what is the stuff function and how does it differ from the replace function? : Sql dba
How do I find duplicates in sql?
Write a sql query to get the third highest salary of an employee from employee_table?
Do we need to rebuild index after truncate?
what does it mean to have quoted_identifier on? What are the implications of having it off? : Sql dba
What is pivot in sql?
what is myisam? : Sql dba
What is the purpose of normalization?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?
How do you delete a table?