Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQL to find duplicate rows...
Jim,
An option that handles multiple duplicates is:
Delete
>From MyTable
Where (MyColumn,RowID) In
(
Select MyColumn,RowID
From MyTable
Minus
Select MyColumn,Min(RowID)
From MyTable
Group By MyColumn
);
You could use Max(RowID) as well, depending on your needs.
Jack
-----Original Message-----
JAMES W [IT/1000]
Sent: Thursday, December 06, 2001 2:26 PM
To: Multiple recipients of list ORACLE-L
Hello all,
I know this has come across many times now, and I thought I had it saved somewhere - you know how that goes...
I need to query a table to find all duplicate rows based on a given column. Don't feel like re-inventing the wheel...
Thanks in advance,
Jim
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jack C. Applewhite INET: japplewhite_at_inetprofit.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Dec 06 2001 - 16:30:36 CST