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 are relationships and mention different types of relationships in the dbms
What is a partition key?
What do you mean by sql server agent?
What are logical/boolean operations in ms sql server?
How to provide column names in insert statements in ms sql server?
What triggers long term care?
What is @@error in sql?
What are different backups available in sql server?
What is the difference between implicit and explicit transaction?
What are the steps you must follow to hide sql server instances?
Do you know how to send email from database?
What are the differences between char and nchar in ms sql server?
What is the main purpose of having conversation group?
Define outer join?
Explain trigger and trigger types?