write a query to delete similar records in same table
Answer Posted / nirmalendu
delete from table_name where rowid not in(select min(rowid)
from table_name group by column_name);
** column_name which having duplicate record
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
How do you explain an index number?
What is pessimistic concurrency control? : Transact sql
What is a pragma statement?
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
How does rowid help in running a query faster?
What is a behavioral trigger?
What is on delete restrict?
Does varchar need length?
In what condition is it good to disable a trigger?
What is meant by temporal data?
Can we rollback truncate?
What is dynamic sql in pl sql?
What is compound trigger?
How do I make my sql query run faster?
What is primary key secondary key alternate key candidate key?