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 cross join? : Sql dba
What is delimiter sql?
What is rank dense_rank and partition in sql?
What is insert command in sql?
What is the difference between a primary key and a clustered index?
What are reports usually used for?
what is online transaction processing (oltp)? : Sql dba
Who is the owner of mysql database?
What is duration in sql profiler trace?
How do I count records in sql?
explain what is mysql? : Sql dba
What is triggering circuit?
Is a secondary key the same as a foreign key?
How to generate a salary slip like jan 1000 1000 feb 1000 2000 ... dec 1000 12000
What is sql table?