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 difference between throw and throws in c#?
List out two different types of errors in c#?
Which namespace is required to implement trace ?
Why do we need abstraction in c#?
What is managed or unmanaged code?
Explain the constructor in c#.
What is JIT (just in time)? how it works?
What is use of private class in c#?
Is c# and c same?
How much time will it take to learn unity?
What is the concept of strong names?
Give an example of removing an element from the queue?
What are value types in c#?
how to implement a web service in .net
What is monitor in C#?