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
What is varray in pl sql?
What is a call statement? Explain with an example.
Is coalesce faster than isnull?
What is loop in pl sql?
What is sql used for?
What is benefit of creating memory optimized table?
How to display the current date in sql?
Why triggers are used?
what are ddl statements in mysql? : Sql dba
What is the most common sql injection tool?
how to show all tables with 'mysql'? : Sql dba
what are all the common sql function? : Sql dba
What is the non-clustered index in sql?
What is pivot table in sql?
What is trigger in sql?