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 the function of .IsDescendent()?
What is the difference between yield and return?
State the top.NET class that everything is derived from?
Explain data types in c#?
What is a virtual property. Give an example?
Which is faster dictionary or list?
What is difference between a constant and read-only in C#?
What is a private class in c#?
How to move to a state-related codebase?
What is default access modifier for class in c#?
What is the data type for bit in c#?
How does c# generics and c++ templates compare?
User's session is explicitly killed by which method ?
What is the predicate of a sentence?
if a base class has a number of overloaded constructors, and an inheriting class has a number of overloaded constructors; can you enforce a call from an inherited constructor to a specific base constructor?