“SQL Server Insertar en Seleccionar” Código de respuesta

SQL Server Insertar en Seleccionar

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

insertar en valores seleccione

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 Insertar en Seleccionar

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

SQL Server Insertar en Seleccionar

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

SQL Server Insertar en Seleccionar

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

SQL Insertar en la instrucción Seleccionar

INSERT INTO OldCustomers
SELECT *
FROM Customers;
SAMER SAEID

Respuestas similares a “SQL Server Insertar en Seleccionar”

Preguntas similares a “SQL Server Insertar en Seleccionar”

Más respuestas relacionadas con “SQL Server Insertar en Seleccionar” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código