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
Can we call procedure inside function in oracle?
State all possible different index configurations a table can possibly have?
List out the types of joins.
I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.
Is insert autocommit in oracle?
What is a trace file and how is it created in oracle?
can u plz provide me oca sql dumps please i need them
What is query image?
What is the difference between "as" and "is" in an oracle stored procedure?
Assuming that you are an End User How to find that in the payment Batch some of the Invoice was Missing To pay How to find That??
What happens if the update subquery returns multiple rows?
Is there any function in oracle similar like group_concat of mysql?
What is a database schema in oracle?
What are privileges and grants?
Please explain oracle data types with examples?