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
what is sp_pkeys? : Transact sql
How to pipe multiline string to isql?
Why is sql better than hql?
How to get list of all tables from a database?
Can I create table without primary key?
What is sql in java?
What does 0 mean in sql?
what is a stored procedure? : Sql dba
What does where 1/2 mean in sql?
Is sqlite thread safe?
How do you use collections in procedure to return the resultset?
What is plpgsql language?
What is gpt format?
What is a sql schema used for?
what is a cursor? : Sql dba