How to Remove the 3rd highest salary person record from
table?
Answer Posted / suresh babu
delete from employees where employee_id in (select
employee_id from employees where 3 =(select count(distinct
e.salary) from employees e
where e.salary >= employees.salary));
| Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
What is the usage of analyze command in oracle?
What are the system predefined user roles?
Is rowid unique in oracle?
What are the different types of synonyms?
What is a proxy class?
Can a formula column referred to columns in higher group ?
How to use "in" parameter properly?
How to get last row id?
What is oracle analytical function?
what is the difference between substr and instr function in oracle?
How can I see all tables in oracle?
How to get execution path reports on query statements?
What are the execution control statements in oracle?
How do I connect to oracle?
What is Redo Log Buffer in Oracle?