mohammad6006
04-17-2015, 01:01 PM
It is an example about SELECT from a table and INSERT to another table :
INSERT INTO Customers (CustomerName, Country)
SELECT SupplierName, Country FROM Suppliers;
How can I do that with VB DB class?
INSERT INTO Customers (CustomerName, Country)
SELECT SupplierName, Country FROM Suppliers;
How can I do that with VB DB class?