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 a clr host?
What is difference between === and ==?
What is the difference between string and stringbuilder in c#?
Is dll a library?
What type of data type conversion happens when the compiler encounters the following code?
What are interfaces in c#?
List down the different ide’s provided by microsoft for c# development.
What is the difference between namespace and class?
What is writeline in c#?
Is it good to use var in c#?
explain Garbage collector’s functionality on unmanaged code
Describe two uses of the “using” statement during the operation of c#?
Is null or empty in c#?
Can a struct have a default constructor (a constructor without parameters) or a destructor in c#?
What is uint16?