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
Explain the difference between replace() and translate() functions in oracle?
IS it possible to built the oracle database without setting the kernal parameters?
Whether any commands are used for months calculation? If so, what are they?
How do I escape a reserved word in oracle?
What is the difference between view and materialized view in Oracle?
Where do we use decode and case statements?
How to write a query with a right outer join in oracle?
Explain a synonym?
What is transport network substrate (tns) in oracle?
How to define a specific record type?
What is difference between cartesian join and cross join?
What are internal user account in oracle?
How to establish administrator authentication to the server?
HI ALL, CAN ANYONE TELL ME THE DIFFERENCES BETWEEN SQL CLUSTURS,MSQL CLUSTERS,ORACLE CLUSTERS.......THANKS IN ADVANCE
What is the use of file param in imp command?