I'm using Jet.
Here's an example
SELECT QtyOnHand, UnitCost, ItemID FROM Inventory
and insert those values into another table (InvTransactions_Detail). I know that I can create a recordset and loop though it and do an insert into command, but I was trying to learn a new way using just the connection.execute command. I have managed to do exactly this with the select into , but only into a new table and not into an existing table.
David Paulson