Re: Deleting duplicate rows

From: Steven Pilgrim <steve_at_llap.demon.co.uk>
Date: 1995/11/30
Message-ID: <817771160.821_at_llap.demon.co.uk>#1/1


Or

create table y_tmp
as select distinct *

     from y;

truncate table y;

insert into y
select * from y_tmp;

regards,
Steve Received on Thu Nov 30 1995 - 00:00:00 CET

Original text of this message