How to Remove the 3rd highest salary person record from
table?
Answer Posted / nathan
DELETE FROM emp
WHERE empno = (SELECT empno
FROM (SELECT empno, ROWNUM rn
FROM (SELECT empno
FROM emp
ORDER BY sal DESC))
WHERE rn = 3);
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Please explain oracle data types with examples?
how the indexes are stored in the Oracle Database?
What are the various oracle database objects?
What is the difference between view and materialized view in Oracle?
What are the differences between number and binary_float in oracle?
Define oracle database
How to define a sub function?
How to use existing values in update statements using oracle?
Please explain joins in oracle?
How to start a new transaction in oracle?
How a tablespace is related to data files?
What is the difference between translate and replace?
Which is better Oracle or MS SQL? Why?
What is a initialization parameter file in oracle?
How oracle handles dead locks?