-----Original Message-----
Probably by using an Append (INSERT INTO) query. The exact syntax would be
difficult to say without more understanding of the table structures.
INSERT Into SomeTable (FieldA, FieldC, FieldR)
SELECT FieldX, FieldY, FieldZ
FROM TemporaryTable
This should put FieldX into FieldA, FieldY into FieldC, and FieldZ into FieldR.