“SQL Server Insert em selecionado” Respostas de código

SQL Server Insert em selecionado

INSERT INTO sales.addresses (street, city, state, zip_code) 
SELECT
    street,
    city,
    state,
    zip_code
FROM
    sales.customers
ORDER BY
    first_name,
    last_name; 
LeisureSuit Larry

inserir em valores selecionar

INSERT INTO my_table SELECT * FROM source_table;
INSERT INTO my_table (a, b, c) SELECT a, b, c FROM source_table;
INSERT INTO my_table (a, b, c) SELECT a, b, c FROM source_table s
	WHERE s.my_col >= 10;
VasteMonde

SQL Server Insert em selecionado

INSERT INTO table2
SELECT * FROM table1
WHERE condition;
Envious Echidna

SQL Server Insert em selecionado

 INSERT INTO table1
 SELECT col1, col2 , col3 FROM table2
 WHERE your condition;
Ayaz Ullah Sharif

SQL Server Insert em selecionado

 INSERT INTO salesTransaction_History
 SELECT * FROM salesTransaction
 WHERE item_Number='Salt-1';
Ayaz Ullah Sharif

SQL Inserir em instrução SELECT

INSERT INTO OldCustomers
SELECT *
FROM Customers;
SAMER SAEID

Respostas semelhantes a “SQL Server Insert em selecionado”

Perguntas semelhantes a “SQL Server Insert em selecionado”

Mais respostas relacionadas para “SQL Server Insert em selecionado” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código