J
JOM
I have a table that has 20 fields and might contain duplicate information
based on 3 fields(ID, LoanNum, date). How do I create a delete query that
would look at each record and based on those 3 fields delete 1 or more of the
duplicates and leave the other?
e.g.,
ID: 123
LoanNum: 44444
Date:01/01/2008
ID: 123
LoanNum: 44444
Date:01/01/2008
ID: 123
LoanNum: 44444
Date:03/01/2008
I would like to delete one of the duplicates and leave the other one there
so end up with
ID: 123
LoanNum: 44444
Date:01/01/2008
ID: 123
LoanNum: 44444
Date:03/01/2008
based on 3 fields(ID, LoanNum, date). How do I create a delete query that
would look at each record and based on those 3 fields delete 1 or more of the
duplicates and leave the other?
e.g.,
ID: 123
LoanNum: 44444
Date:01/01/2008
ID: 123
LoanNum: 44444
Date:01/01/2008
ID: 123
LoanNum: 44444
Date:03/01/2008
I would like to delete one of the duplicates and leave the other one there
so end up with
ID: 123
LoanNum: 44444
Date:01/01/2008
ID: 123
LoanNum: 44444
Date:03/01/2008