write a query to delete similar records in same table
Answer Posted / apurva
delete from <tablename> rowid not in (select max(rowid)
from <tablename> group by <col.name where there are
repeating records>);
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Does truncate release storage space?
What is full join?
How to start the command-line sql*plus?
What is the meaning of disabling a trigger?
How long does it take to learn pl sql?
Explain how can you save or place your msg in a table?
What are the limitations of sql express?
how to see the create table statement of an existing table? : Sql dba
What does select count (*) mean in sql?
Enlist some predefined exceptions?
what are all different types of collation sensitivity? : Sql dba
How can we find duplicate records in a table?
Are stored procedures faster than queries?
How do I enable sql encryption?
What is primary key in db?