hi
i have a table which has thousands of duplicate records. i have this sql query that shows which records are duplicated and the number of times each record is duplicated.
select fielname, count(fieldname) from tablename havng count(fieldname) > 1
how can i keep one occurnce of the record and delete all the remaining duplicate of the record.
thx
TA
i have a table which has thousands of duplicate records. i have this sql query that shows which records are duplicated and the number of times each record is duplicated.
select fielname, count(fieldname) from tablename havng count(fieldname) > 1
how can i keep one occurnce of the record and delete all the remaining duplicate of the record.
thx
TA