Answers for "select and insert into new table"

SQL
0

select insert new table sql server

SELECT *
INTO [new_BK]
FROM [old_table]
Posted by: Guest on June-11-2021
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
2

SELECT INTO

SELECT * INTO nome_da_tabela_que_estao_a_mexer_BKP
	FROM nome_da_tabela_que_estao_a_mexer
Posted by: Guest on June-22-2020

Code answers related to "select and insert into new table"

Code answers related to "SQL"

Browse Popular Code Answers by Language