I know that it is possible to remove duplicates from a table using the ROWID
in the following example form:
DELETE FROM TABLE_NAME
WHERE ROWID IN
(SELECT
MIN(ROWID)
FROM TABLE_NAME
WHERE ...
GROUP BY COLUMN_NAME_1, COLUMN_NAME_2, etc. )
I wonder if this is possible to be done for entries appearing more than 2 times. If not are there any other methods to be done?