I have a database with 15 tables(aprox) I have combined all tables into one tabe and assigned a separate primary key prefix for each original table. Is it possible to create a query that would search for duplicates and remove duplicates based on name and address and also add a character to a field that represents additional tables the master record was in prior to deletion?
for example if I had the same record in table 1,2 and 3, the query would delete the records from table 2 and three and place a 1 in a field representing table 2 and also a 1 in a field representing table 3? This way I can query all the records with a 1 in field 27(for example) and pull out my original table records?
for example if I had the same record in table 1,2 and 3, the query would delete the records from table 2 and three and place a 1 in a field representing table 2 and also a 1 in a field representing table 3? This way I can query all the records with a 1 in field 27(for example) and pull out my original table records?