I have duplicate records I accidentally inserted into a table, and I have found them using a count()
query, like so:
select _clm1, count(_id) as count from _tableName group by _clm1 having count > 1;
Is there another query I can append to this, to erase the duplicate entries, while leaving one of each untouched?