Answers for "sql insert value from another table"

SQL
2

get value from a table an insert it with other values in another table sql

INSERT INTO table1 ( column1, column2, someInt, someVarChar )
SELECT  table2.column1, table2.column2, 8, 'some string etc.'
FROM    table2
WHERE   table2.ID = 7;
Posted by: Guest on January-17-2021
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

create table and insert values from another table

CREATE TABLE new_table AS
SELECT * 
FROM   old_table;
Posted by: Guest on May-13-2021

Code answers related to "sql insert value from another table"

Code answers related to "SQL"

Browse Popular Code Answers by Language