How To delete duplicate record from a particular table?
Answer Posted / manoj
DELETE FROM table_name a
WHERE ROWID >(SELECT min(ROWID)
FROM table_name b
WHERE a.col_1=b.col_1 )
| Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
What does select 1 mean?
Explain few examples of stored procedure over triggers?
What are the new security features added in sql server 2012? : sql server security
Define msdb database?
Which are the new data types introduced in sql server 2008?
What is the difference between commit and rollback?
Do you know sql server 2008 backup compression?
How would you use user_constraints table in DB?
What is the difference RDBMS and Graph Database?
How do you Implement SSIS Packages in your Project?
What number aggregate functions are accessible there in sql?
What are the results of running this script?
What is the difference between varchar and nvarchar?
How does normalization work?
What is a matrix in ssrs?