Answers for "insert into sql with select"

SQL
10

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
7

sql server insert into select

INSERT INTO sales.addresses (street, city, state, zip_code) 
SELECT
    street,
    city,
    state,
    zip_code
FROM
    sales.customers
ORDER BY
    first_name,
    last_name;
Posted by: Guest on March-05-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
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 "insert into sql with select"

Code answers related to "SQL"

Browse Popular Code Answers by Language