Sounds like an append query to me. Let's suppose you wanted to add two columns of my result set to another table. Let's assume you named my query "qryMaterial"
INSERT INTO LargeTable (ConductorID, Material)
SELECT ConductorID, Material FROM qryMaterial
or suppose LargeTable did not use those exact column names:
INSERT INTO LargeTable (ID, Substance)
SELECT ConductorID as ID, Material as Substance FROM qryMaterial
Such is an append query. Is that what you wanted?