how to select second mauximum value in a given table under salary column
Answer Posted / sonthosh
SELECT * FROM
(
SELECT
NAME
,SALARY
,RANK() OVER (order by salary desc) RANK
FROM EMPLOYEE)
WHERE RANK = 2
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
How to establish administrator authentication to the server?
What is the data pump import utility?
When do you get a .pll extension in oracle?
How to rename an index?
How to create a new table in your schema?
Explain the use of tables option in exp command.
What are set operators?
What is a table index?
is there a tool to trace queries, like profiler for sql server?
Point out the difference between user tables and data dictionary?
How can I get column names from a table in oracle?
What is meant by recursive hints in oracle?
What is Reduced List of Values?
Differentiate between function and procedure in oracle.
State any two functions of oracle?