Given that we have 3 tables in MS Access,
table1
ID MyName Months
111 A 1
222 B 1
333 F 2
444 D 2
555 G 3
666 C 3
table2
ID Income Months
111 500 1
222 900 1
333 800 2
444 6000 2
table3
ID Income Months
555 65656 3
666 77777 3
I want to join table 2 and 3 into table 1 so that my return will be Table_Result
ID NAME Income Months
111 A 500 1
222 B 900 1
333 F 800 2
444 D 6000 2
555 G 65656 3
666 C 77777 3
How do get the Table_Result?