Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to delete duplicate rows from table in sql server

Answer Posted / sanjay kumar dinda

Deletion of Rows depends upon the different condition...
Consider based on n columns the entire recordset is
treating a duplicate... We can delete the duplicate by
using following method...

Add one column and set uniue values to that column..

ALTER TABLE TABLE1 ADD ID INT IDENTITY(1,1)

COnsider T contains 40 columns and based on C1,C2,C3 we
have to find the duplicate and we have to delete the same...


Delete T1

FROM TABLE1 T1,TABLE1 T2
WHETE T1.C1=T2.C1 AND
T1.C2=T2.C2 AND
T1.C3=T2.C2
AND T1.ID>T2.ID


I think this will help....

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can we use ConnectorJ JDBC Driver with MS SQL?

1050


What are the different type of replication in sql server?

1013


Explain unique key in sql server?

1049


what is nonclustered index

997


What is @@error in sql?

1106


Explain transaction server implicit?

1024


your sql server is running out of disk space. You notice that there are several large files with ldf extensions what are these files? : Sql server administration

1045


Can primary key be a foreign key?

1108


What is the purpose of the model database?

1065


How to test a dml trigger in ms sql server?

1104


What is rtm version in sql server?

1101


what is dbcc? : Sql server database administration

1076


Tell me the use of keyword with encryption. Create a store procedure with encryption?

1055


When would you use it?

1040


In which format does an image save in SQL Server database ?

1053