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
What is escape sequence in c#?
How we convert private assembly into public assembly?
Name the control which cannot be placed in mdi?
What is the difference between a function and a method?
What is a Assembly?
What happens when thread sleep () method is called?
What is the file extension for c#?
What is jit? What are the different types of jit?
What does dbml mean?
What is hash c#?
Is as keyword in c#?
Why do we use interfaces in c#?
What is int parse in c#?
Can you call from an inherited constructor to a specific base constructor if both base class and an inheriting class has a number of overloaded constructors?
What is an assembly in dotnet?