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 is icomparer in c#?
how to print invert pyramid in c#
Why generics are used?
Define multicast c# delegate?
How does one compare strings in c#?
What is the main method?
Why do we use polymorphism in c#?
What is difference between throw and throws in c#?
Is c# pass by reference?
What are the different types of assemblies available and their purpose?
Why is c# a good programming language?
Is object an int c#?
What is a deadlock lock?
What is pure abstract class in c#?
How do you prevent a method from being overridden in c#?