I have this table in my database:
tblAgencies ---------------------- AgencyID (PK) VendorID RegionID Name Zip Long story short, I accidentally copied my entire table into itself - so every row in my table has a duplicate.
But with my AgencyID field being the identity, and automatically incrementing, I need to find duplicates based on all the other fields, since AgencyID is unique.
Does anyone know how I can do this?