How to Remove the 3rd highest salary person record from
table?
Answer Posted / khan
DELETE FROM
(SELECT EMP_ID, SALARY, DENSE_RANK() OVER (ORDER BY SALARY DESC) AS CNT FROM EMPLOYEE)
WHERE CNT = 3;
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
6. Display the client name and order date for all orders using the traditional method.
What is a initialization parameter file in oracle?
How to grant create session privilege to a user in oracle?
When do I need to use a semicolon vs a slash in oracle sql?
How to establish administrator authentication to the server?
What is Virtual Private Database in Oracle?
How many data types are supported?
How to define a specific record type?
Explain parameter file in oracle.
Database is hung. Old and new user connections alike hang on impact. What do you do? Your SYS SQLPLUS session IS able to connect.
What is the difference between I and G in Oracle?
Explain oracle’s server parameter file.
What are triggers in oracle?
Why do you create or replace procedures rather that drop and recreate.
Explain the use of constraints option in exp command.