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 / anoop rajan

Tbale emp had some duplicate entries and i wanted to retain
the first of all duplicates, the others could be deleted as
follows . Please give your comments if this is the most
optimum way :

delete from emp where rowid in
(select rowid from emp o where rowid !=
(select min(rowid) from emp i where i.empno=o.empno));

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

your distribution database is full what will u do

2224


What is the main difference between ‘between’ and ‘in’ condition operators?

1278


How to get a list of columns using the "sys.columns" view in ms sql server?

1010


What is Command line parameters in PLSQL.?

1195


Is the log file is a part of file group?

1096


what are the different ways of moving data/databases between servers and databases in sql server? : Sql server database administration

1032


Which tcp/ip port does sql server run on? How can it be changed?

1085


what are acid properties? : Sql server database administration

1060


Describe the functionalities that views support.

1148


What are three major types of constraints?

1176


What does dml stand for?

998


Which trace flags are enabled in sql server?

1076


what protocol both networks use? : Sql server database administration

1019


What is difference between materialized view and view?

954


Explain the collation?

1149