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


Please Help Members By Posting Answers For Below Questions

Can we protect our pl/sql source code?

580


what is dynamic SGA and static SGA

3845


How to define a sub function?

671


In Oracle Applications We are Using Sub Ledger Accounting. When we Transfer the Data all modules (AP,AR,CE,FA) to SLA We done Some customizations? What are They??

1366


How to save query output to a local file?

563






How to convert characters to times in oracle?

598


What are the execution control statements?

621


Why is oracle so popular?

561


How to store pictures on to the database?

532


Describe an oracle table?

576


How can we find out the current date and time in oracle?

641


What happens to the current transaction if the session is ended?

529


Why do you use stored procedures and state some of its disadvantages?

567


Is primary key indexed by default in oracle?

551


Explain enable novalidate constraint.

599