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 marshalling and what are different kinds of marshalling?
What are "class access modifiers" in C#?
How long can loop recorders stay in?
What is iqueryable?
Is c# code is unmanaged or managed code?
How do you comment in c#?
What types of object can I throw as exceptions?
Is it possible to have different access modifiers on the get/set methods of a property in c#?
What does the dispose method do with the connection object?
Explain the difference between a Private Assembly and a Shared Assembly
What is Custom attribute? How to create? If I'm having custom attribute in an assembly, how to say that name in the code?
Are there constructors in c sharp?
What is the use of functional interface?
Explain inheritance in c#?
What are c# collections?