I have opened a recordset and now I want to copy all the records of that recordset to a table.
This command gives me the list of all Ids in Customer Table.
How can I now Insert this list in to a table?
Code:
set rs = db.OpenRecordset("SELECT ID FROM Customers")
How can I now Insert this list in to a table?
Comment