I have a table with the following fields - Appeal #(Auto Number), Student ID, Class. I want to append records from an identical table and then delete the duplicate records (or not append the duplicate records in the first place).
The trouble is the only single unique key is the Auto Number field.
The same student appears in the table many times and the same class appears many times, but their combination is unique.
This makes it impossible to remove the duplicate queries by copying the structure of the table and then appending values.
Is there a way to do this or have I just designed the table badly?
The trouble is the only single unique key is the Auto Number field.
The same student appears in the table many times and the same class appears many times, but their combination is unique.
This makes it impossible to remove the duplicate queries by copying the structure of the table and then appending values.
Is there a way to do this or have I just designed the table badly?