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
Where the sql database files are stored?
Explain the types of joins in sql?
what is the difference between $message and $$message? : Sql dba
What is an implicit commit?
What is normalization? How many normalization forms are there?
Explain what is an index?
what is a composite primary key ? : Sql dba
What is not null in sql?
What is the use of prepared statement?
Can you load data into multiple tables at once? : aql loader
What is a constraint? Tell me about its various levels.
What is composite data type in pl sql?
What is out parameter used for eventhough return statement can also be used in pl/sql?
What does subquery mean in sql?
When are we going to use truncate and delete?