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
What is extension method in c# and how to use them?
What are the Uses of CLR
What is class and object c#?
What does async mean in c#?
How many static constructors are allowed in a class?
Can a constructor be static in c#?
if you do have a stack overflow profile.what is your ranking?
Can you use all access modifiers for all types?
Does c# support const methods, properties, or events?
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
Explain the features of an abstract class in net.
How do I format in c#?
Is array value type in c#?
Can an interface extend a class c#?
Why extension method is static?