Sure you can use:Queries - NEW- Find Duplicate Query wizard
Follow the steps n the wizrds and you can view all duplicated records
for Example if mageID=1 and you have two rows- then the query will display two rows with identical imageID number
To delete just select one row and press DEL.
the sql code generated by the query will be :
SELECT [Table-name].imageID, [Table-name].year, [Table-name].seq_number, [Table-name].date
FROM [Table-name]
WHERE ((([Table-name].imageID) In (SELECT [imageID] FROM [Table-name] As Tmp GROUP BY [imageID] HAVING Count(*)>1 )))
ORDER BY [Table-name].imageID;
Hope this help