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
Where do we use decode and case statements?
Why do we use bulk collect in oracle?
How to display employee records who gets more salary than the average salary in the department?
What is the difference between translate and replace?
How to start an oracle instance?
What are the major difference between truncate and delete?
What happens if variable names collide with table/column names?
How do you store pictures in a database?
What privilege is needed for a user to query tables in another schema?
What is logical backup in oracle?
What is a lookup table in oracle?
How to create a new oracle data file?
How to create a new view in oracle?
How to drop a stored function?
What is data block in Oracle?