1) how to delete duplicate records from table in sql server
2005
2) what is run time polymorphism
Answer Posted / kishore
select distinct * from Mytable
select distinct * into Newtable from Mytable
drop table Mytable
select * into Mytable from Newtable
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
What are the 2 kinds of data type conversions in c#?
Should I use double or float?
Explain the difference between .net and c#?
What are the two kinds of properties in c#.
Is there a way of specifying which block or loop to break out of when working with nested loops?
What is toint32 c#?
When a Static Constructor is called in a Class?
How many types of inheritance are there in c#?
Why to use lock statement in c#?
What are methods c#?
Describe an abstract class?
What is a strong name in c#?
Write a C# program to find the Factorial of n
What is yield c#?
What does break do in loop?