Copy Columns Data From Table To Other Table
INSERT INTO Stores( ProductID, ProductName)
SELECT ProductID, ProductName FROM Products
hint
This operation is copy the data in new Rows without Replace the same old data
INSERT INTO Stores( ProductID, ProductName)
SELECT ProductID, ProductName FROM Products
hint
This operation is copy the data in new Rows without Replace the same old data