How To delete duplicate record from a particular table?
Answer Posted / parashu
Delete from <TableName> where <fieldName> in (select
<FieldName> from <TableName> Group By <FieldName> Having
(Count(<FieldName>)>1))
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
List the types of recovery model available in sql server?
Do you know the cursor types?
What is sql profiler. What are the default templates with it? : sql server database administration
What is catalog views?
explain how to create a new schema in a database? : Sql server database administration
Explain the disadvantages/limitation of the cursor?
Define cursor locking
What type of locking occurs during the snapshot generation? : sql server replication
How many partitions a clustered index has by default in sql server 2012?
how many no of arguments can be passed in procedures and functions
Define self join in sql server joins?
How to create an multi-statement table-valued function?
What are the different editions available in sql server 2000?
What is resultset concur_updatable?
Explain datetime2 data type in sal server 2008?