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
How to store pictures on to the database?
How to create a server parameter file?
Why oracle is used?
How to create a table index?
How to pass a cursor variable to a procedure?
what is reindexing?
Explain what are the type of synonyms?
How to delete an existing row from a table in oracle?
What are the ansi data types supported in oracle?
Can we create database in oracle using command line ?
What is Reduced List of Values?
How can I see all tables in oracle?
How to change program global area (pga) in oracle?
How to define an oracle sub procedure?
Give the advantages and disadvantages of clusters.