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 the key differences between SQL and PL SQL?
What is the difference between having and a where in sql?
What are the different dml commands in sql?
Differentiate pl/sql and sql?
how to select first 5 records from a table? : Sql dba
What is an alias command?
What are all the common sql functions?
Why cross join is used?
State few characteristics of pl/sql?
What are the basic techniques of indexing?
what is a table in a database ? : Sql dba
What are the advantages of sql? Explain
What is sql character function?
What do you understand by exception handling in pl/sql?
What is a primary key example?