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
Explain enable novalidate constraint.
How to update values on multiple rows in oracle?
Explain the use of record option in exp command.
What query tells you how much space a tablespace named test is taking up, and how much space is remaining?
Is the After report trigger fired if the report execution fails ?
How to use null as conditions in oracle?
How to convert a date to char in oracle? Give one example.
How to count groups returned with the group by clause in oracle?
What is raw datatype in oracle?
How do I connect to oracle?
How to use values from other tables in update statements using oracle?
Is oracle a relational database?
How to check database size in Oracle?
How to do paging with oracle?
How to retrieve data from an cursor to a record?