How to Remove the 3rd highest salary person record from
table?
Answer Posted / manoj
delete from employee where sal = (select sal from (select sal from employee order by sal desc) where rownum = 3);
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Is there any way to find out when one specific table/view/M-view is used last time. i.e. when one specific object is used in any SELECT statement.
Does oracle charge for java?
Explain what are the advantages of views?
How to change program global area (pga) in oracle?
How is it different from a normal table?
How do I connect to oracle database?
What is a trigger and what are its types in oracle?
What is the effect of setting the value "all_rows" for optimizer_goal parameter of the alter session command? What are the factors that affect optimizer in choosing an optimization approach?
Explain how are indexes update?
What is the use of oracle?
Briefly explain what is literal? Give an example where it can be used?
What are the major difference between truncate and delete?
what is difference between sql plus and sql*plus? (not sql and sql plus).
How to download oracle database 10g xe?
What is a data lock in oracle?