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 meant by clr?
What are the benefits of using generics?
Is string null or empty?
What's c# ?
What is serializable in c#?
What is a decimal in c#?
What is thread safe in c#?
What is a dbml?
What is default method in c#?
Why c# is type safe?
How are methods overloaded?
Give an example to show for hiding base class methods?
What are the differences between system.string and system.text.stringbuilder classes?
Why do we parse in c#?
How do you specify a custom attribute for the entire assembly?