I need to be able to edit a table of data using specific criteria and I am unsure where to begin. I have created several delete queries but not like this.
Three fields: ID, Course, and EffDate
The data comes from a different system and can not be edited prior to the import into the database so I need to make updates.
A Delete Query that deletes records if the the ID and Course are duplicated and saves the record with the same information and the lastest EffDate.
Example:
ID Course EffDate
123 B0129 9/2/10
123 B0129 10/15/10
123 B0129 1/2/11
In this case the query would delete the first two records and save the third.
Thank you in advance for any help.