I have a table that contains duplicate records. I need to identify the duplicates and remove them. Table example:
UniqueID YearID VehicleID
====== ====== =========
001 41 1
002 39 2
003 40 3
004 41 1
005 41 5
Is there any way I can query for all duplicate VehicleID's having a YearID value of 41?
Thanks,
Brett
UniqueID YearID VehicleID
====== ====== =========
001 41 1
002 39 2
003 40 3
004 41 1
005 41 5
Is there any way I can query for all duplicate VehicleID's having a YearID value of 41?
Thanks,
Brett