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
what are numeric data types? : Sql dba
What are user defined functions?
Is sql scripting language?
What packages(if any) has oracle provided for use by developers?
Can delete statement be rollbacked?
Can we call dml statement in function?
What are the built in functions of sql?
What is the difference between clustered and non-clustered index in sql?
how is exception handling handled in mysql? : Sql dba
What are the 3 types of behavioral triggers?
What is nosql vs sql?
how to increment dates by 1 in mysql? : Sql dba
What is identity column in sql server?
what is cursor and its type, what is ref cursor write a syntax to pass ref cursor into procedure out fucntion and call the procedure
What are sql injection vulnerabilities?