Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
command copies data from one table and inserts it into another table. The following SQL copies "Suppliers" into "Customers" (the columns that are not filled with data, will contain NULL):
INSERT INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;
The following SQL copies "Suppliers" into "Customers" (fill all columns):INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode,
SELECT SupplierName, ContactName, Address, City, PostalCode,
Country FROM Suppliers;
The following SQL copies only the German suppliers into "Customers":INSERT INTO Customers (CustomerName, City, Country) SELECT SupplierName, City, Country FROM Suppliers
WHERE Country='Germany';❮ SQL Keywords