“SQL Wstaw do instrukcji Select” Kod odpowiedzi

Włóż instrukcję wyboru do tabeli

--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;
Black Tailed Deer

SQL SERVER WESPERT INDELE

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

SQL Wstaw do instrukcji Select

INSERT INTO OldCustomers
SELECT *
FROM Customers;
SAMER SAEID

Odpowiedzi podobne do “SQL Wstaw do instrukcji Select”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu