Answers for "insert values into sql table"

SQL
5

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

insert query results to table

INSERT INTO agentbangalore
SELECT * FROM agents
WHERE  working_area="Bangalore";
Posted by: Guest on September-18-2021

Code answers related to "insert values into sql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language