I have an access 2007 database with two tables main and main1 both tables have the same design and the same fields (85 fields)
I want to update one of them from the other one , is there an easy way to do that? I know I can use update query but I see in this case I have to specify each field in both tables in the query design and that is hard for 85 fields.
So what should I do in this case ?
 UPDATE main 
 SET main.ID = [main1]![ID], 
 main.eng1job = [main1]![eng1job],   
 main.[eng1job-s] = [main1]![eng1job-s], 
 main.[eng1job-q] = [main1]![eng1job-q];
 
     
    