find out the second highest salary?
Answer Posted / ved
SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP n salary
FROM employee
ORDER BY salary DESC) a
ORDER BY salary
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain the use of rows option in exp command.
What is ceil and floor in oracle?
How to find out what oracle odbc drivers are installed?
What happens to the data files if a tablespace is dropped?
How to define an anonymous procedure with variables?
How to Truncate Table in Oracle
What is rich query?
How to list all user accounts in oracle?
Differentiate between post-database commit and post-form commit?
11. Display the client number and name and the client number and name of the person who referred that client.
What is a trigger oracle?
What do you understand by a database object?
What is a read write transaction in oracle?
What is different types of joins?
What is set verify off in oracle?