Answers for "what is insert from select"

SQL
8

insert a select statement into a table

--format
INSERT INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;

--examples
INSERT INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;
Posted by: Guest on March-30-2020
0

SQL Server INSERT INTO SELECT

INSERT INTO salesTransaction_History
 SELECT * FROM salesTransaction
 WHERE item_Number='Salt-1';
Posted by: Guest on November-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language