I need to examine a table for duplicates; not exact duplicates, as PKs would be different, but one or in all probability several fields would be very similar, due to mistyping, etc.,. So I need a query that would return records where
fieldA is LIKE fieldA; fieldB is LIKE fieldB; fieldC is LIKE fieldC and so on. Ideally I want to be able to adjust the tolerance of the LIKE to increase or decrease discrimination, or to cast a wider or narrower net for possible duplicates.
fieldA is LIKE fieldA; fieldB is LIKE fieldB; fieldC is LIKE fieldC and so on. Ideally I want to be able to adjust the tolerance of the LIKE to increase or decrease discrimination, or to cast a wider or narrower net for possible duplicates.