Answer Posted / rakhi
SELECT *
FROM (
SELECT employee_id, last_name, salary,
RANK() OVER (ORDER BY salary DESC) EMPRANK
FROM employees)
WHERE emprank = 2;
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is a user account in oracle?
How to define an explicit cursor in oracle?
How many file formats are supported to export data?
What is oracle analytical function?
What is Library Cache in Oracle?
How do we display rows from the table without duplicates?
How to delete a user account in oracle?
Is it possible to center an object horizontally in a repeating frame that has a variable horizontal size ?
Explain an exception and its types?
How to connect to a remote server?
A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.
Explain index?
What is the use of aggregate functions in oracle?
How do we get field detail of a table?
How to write a query with a left outer join in oracle?