If there is no other columns in the new table than the
key columns, select distinct * followed by an insert, is by
far the easiest approach.
If there are columns to be preserved,
apart from the PK, you have to make an informed decision, on
which rows to delete - supposedly according to some rule.
If the remaining information is of no consequence, again the
select distinct * is the easiest approach.
BOW