Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Help! Deleting duplicate rows

Re: Help! Deleting duplicate rows

From: Ben Ryan <benryan_at_my-deja.com>
Date: Wed, 15 Sep 1999 16:10:45 GMT
Message-ID: <7rogdp$kg6$1@nnrp1.deja.com>


In article <7ro8l3$e0m$1_at_nnrp1.deja.com>,   sjoshi_at_ingr.com wrote:
> Hello All
> Can someone please tell me how to delete duplicate rows from a table
> in Oracle 8.0.4
>
>

SELECT rowid,* FROM your_table;

DELETE FROM your_table WHERE rowid = value;

Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't. Received on Wed Sep 15 1999 - 11:10:45 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US