1) how to delete duplicate records from table in sql server
2005
2) what is run time polymorphism
Answer Posted / reva
DELETE FROM tableName WHERE id NOT IN
(SELECT MIN(id) FROM tableName GROUP BY name)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Can a class have more than 1 destructor?
What is a constructor in c#?
What is the namespace for the thread class?
What is sqlcommand in c#?
What is a variable in c#?
What is the difference between User controls and Custom Controls?
What is a thread c#?
What is args c#?
What is type checking in c#?
Is cli same as the clr?
Distinguish between the Debug class and Trace class with its functionality?
Can an array be null c#?
What is an enumerator c#?
How do you sort a list in c#?
Which namespaces are necessary to create a localized application?