How will you delete a particular row from a Table?
Answer Posted / rakesh
delete from emp e1
where n = (select count(distinct rowid)
from emp e2
where e2.rowid <= e1.rowid)
Note:Here "n" means Nth row..
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
How to fetch alternate records from a table?
Explain cursor types?
What is flag in sql?
Can we change the table name in sql?
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba
Is left join and outer join same?
What is assignment operator in pl sql?
How can I change database name in sql?
What is sql deadlock?
What is cursor and its types?
Explain what is a field in a database and record in a database?
What is left join example?
Why do we use cursors?
How do you modify a column in sql?
Is sql database free?