1) how to delete duplicate records from table in sql server
2005

2) what is run time polymorphism

Answer Posted / nkm

SELECT col1,col2 FROM tDupData
GROUP BY col1,col2
HAVING COUNT(*) > 1

Is This Answer Correct ?    4 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is extension method in c# and how to use them?

550


What are the Uses of CLR

866


What is class and object c#?

558


What does async mean in c#?

597


How many static constructors are allowed in a class?

566






Can a constructor be static in c#?

634


if you do have a stack overflow profile.what is your ranking?

1559


Can you use all access modifiers for all types?

617


Does c# support const methods, properties, or events?

631


In a C# class we have a SortedList member m_addinProjects we want to provide an iterator to allow the consumer of this class access to the items in the collection. Please provide an iterator method for the AnalyzeAddinsDLL class below and an example of how it would be used. namespace AnalyzeAddinsDLL { public class AllAddInProjects { private SortedList m_addinProjects; public AllAddInProjects() { m_addinProjects = new SortedList(); } } }

1917


Explain the features of an abstract class in net.

596


How do I format in c#?

561


Is array value type in c#?

683


Can an interface extend a class c#?

610


Why extension method is static?

556