1) how to delete duplicate records from table in sql server
2005

2) what is run time polymorphism

Answers were Sorted based on User's Feedback



1) how to delete duplicate records from table in sql server 2005 2) what is run time polymorphi..

Answer / 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

1) how to delete duplicate records from table in sql server 2005 2) what is run time polymorphi..

Answer / shailesh

2>Polymorphism is done by two way Overloading and
overriding.Overriding is called the runtime Polymorphism.

Is This Answer Correct ?    3 Yes 1 No

1) how to delete duplicate records from table in sql server 2005 2) what is run time polymorphi..

Answer / reva

DELETE FROM tableName WHERE id NOT IN
(SELECT MIN(id) FROM tableName GROUP BY name)

Is This Answer Correct ?    2 Yes 2 No

1) how to delete duplicate records from table in sql server 2005 2) what is run time polymorphi..

Answer / nkm

SELECT col1,col2 FROM tDupData
GROUP BY col1,col2
HAVING COUNT(*) > 1

Is This Answer Correct ?    4 Yes 14 No

Post New Answer

More C Sharp Interview Questions

Does c# support #define for defining global constants?

0 Answers  


Is static thread safe?

0 Answers  


Why do we need interfaces in c#?

0 Answers  


How would you describe encapsulation in c#?

0 Answers  


Is there an equivalent to the instanceof operator in visual j++?

0 Answers  






Explain data types in c#?

0 Answers  


What does do in c#?

0 Answers  


Why do we use yield in c#?

0 Answers  


What is the raise event used for?

1 Answers   Wipro,


Is int a struct in c#?

0 Answers  


what is uniary operators and binary operators and what is the difference

1 Answers   Protech,


Can You Prevent Your Class From Being Inherited By Another Class?

0 Answers   Siebel Systems,


Categories