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 retrieve duplicate rows in a table?
How to delete the duplicate entries in a table?

Answer Posted / samba shiva reddy . m

How to retrieve the duplicate rows in table :

select * from emp group by empid,empname having count(empname)>1

How to delete the duplicate rows in table :
1.inserting distinct rows in temp table variable
2. deleting emp table
3.Again inserting into emp table from temp table variable


declare @temp table
(empid int,empname varchar(50))
insert into @temp
select * from emp group by empid,empname having count(empname)>0
delete from emp
insert into emp
select * from @temp
select * from emp

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain trigger and its types?

1114


How secure is sql server database?

1067


What is dynamic cursor in SQL SERVER?

1135


What is the difference between count and distinct count?

928


What is difference between delete & truncate commands?

1140


What is exclusive locks?

1011


What is a DBMS, query, SQL?

1092


What’s the distinction between dropping a info and taking a info offline?

1090


What is the difference between DATETIME2 and DATETIME?

1125


what is normalization? Explain different levels of normalization? : Sql server database administration

1410


How will you know when statistics on a table are obsolete?

1127


What do you mean by tablesample?

1124


What are orphan records?

985


Explain DBCC?

1013


How many types of keys are there?

1073