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 remove duplicate rows from a table?.

Answers were Sorted based on User's Feedback



How to remove duplicate rows from a table?...

Answer / vamsi

for example our emp table have duplicate rows than we can
run this query to delete those duplicate rows

Delete from emp a
where rowid <> ( select max(rowid) from emp where empno =
a.empno);

Is This Answer Correct ?    13 Yes 4 No

How to remove duplicate rows from a table?...

Answer / lova raju allumalla

delete from emp where rowid not in (select min(rowid) from
emp group by empno);

Is This Answer Correct ?    7 Yes 2 No

How to remove duplicate rows from a table?...

Answer / karthik

with [dup_cte] as {
select row_number(partition by eid order by eid) as rn from emp}
go
delete from [dup_cte] where rn>1

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

Explain the difference between 'between' & 'and' operators in sql

0 Answers  


How to use sql*plus built-in timers?

0 Answers  


What are tuples in sql?

0 Answers  


Why cross join is used?

0 Answers  


what is not null constraint? : Sql dba

0 Answers  


What are indexes, and what are the different types?

3 Answers  


Explain how to use transactions efficiently : transact sql

0 Answers  


how to create a new table by selecting rows from another table in mysql? : Sql dba

0 Answers  


What can be a size of a pl/sql block? Is there any limit?

2 Answers  


How to use transactions efficiently : transact sql

0 Answers  


What is the difference between partition and index?

0 Answers  


What does plv msg allows you to do?

0 Answers  


Categories