humm, next time add an unique index :-)
I'm not quite sure what the fastest way is in this case, but what you can do is insert dinstinct data from your duplicate table in a temp table, delete all entries in in your table and insert from your temp table into your table...
sounds bad i know, but it'll work(I'm sure there's an easier way..anyone out there?).
- create temp table(let's say tmp_table) with the same structure as original table(dup_table)
- insert tmp_table select distinct field1,field2 from dup_table
(or insert tmp_table select field1,field2 from dup_table group by field1,field2)
3 delete from dup_table
4 insert dup_table select * from tmp_table
make sure you backup your data first!!!
tell me if that works for you,
laters,
zone16