Use the DTS wizard with this query.
SELECT T1.A, T1.B, T1.C, T1.D, T1.E,
T2.F, T2.H
FROM Table_1 T1
JOIN Table_2 T2 ON T2.A = T1.A
With this query the DTS wizard will create a new table with columns A, B, C, D, E, F, and H. The values in columns A, B, C, D, and E will be from...