Answers for "insert from a 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 table1
 SELECT col1, col2 , col3 FROM table2
 WHERE your condition;
Posted by: Guest on November-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language