how to delete duplicate rows in sql server2005
Answer Posted / nittu
Delete from Tbl where Id NOT IN(
select Min(Id)
from tbl
Group By Colmn1,Column2)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between ROW_NUMBER and Ranking function in SQL SERVER?
What are the different editions available in sql server 2000?
What is the purpose of object explorer and its features? : sql server management studio
What is implicit mode in sql server?
Mention the different types of replication in sql server.
What is the difference between deallocate cursor and close cursor?
If you're given a raw data table, how would perform etl (extract, transform, load) with sql to obtain the data in a desired format?
What is the concept of optimization?
What are the mathematical functions supported by sql server 2005?
What is spid in sql server profiler?
What is a not null constraint?
What are the difficulties faced in cube development? : sql server analysis services, ssas
how many triggers you can have on a table? : Sql server database administration
Explain about integration services of Microsoft SQL server?
What is sql server profiler trace data file?