Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Help! Deleting duplicate rows
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
>
> thanks
> Sunit
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
delete from table where rowid in ( select max(row_id) from table group by all_fields) Received on Wed Sep 15 1999 - 13:17:03 CDT
![]() |
![]() |