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
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 |
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 |
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 |
Answer / nkm
SELECT col1,col2 FROM tDupData
GROUP BY col1,col2
HAVING COUNT(*) > 1
Is This Answer Correct ? | 4 Yes | 14 No |
Can you declare struct members as protected?
how to change a value of particular cell in a data grid
What is icomparable in c#?
What is difference between Method and function
Can a struct inherit from another struct or class in c#?
State two different types of access modifiers.
What is _layout cshtml?
what is inheritance and an example in vb.net and c# of when you might use it?
How do you implement Inheritance in dot net ?
Is goto statement supported in c#?
What language is arduino?
What does type safety mean?