replace
<table> with your table name
replace
<all, columns, in, your, table> with
all columns in your table.
The subquery will return just one rowid for each unique row (the lowest rowid).
The main query will delete all records that are not in this subquery. They are the duplicates.
carefull:
Take a backup of your table first! Be prepared to rollback! Try it on a
test instance first! Disable autocommit!
Regards, Jan