Answers for "how to insert all values from one table into another table that is the same in sql"

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
0

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

INSERT INTO column_1 ( val_1, val_from_other_table ) 
VALUES('val_1', (SELECT  val_2 FROM table_2 WHERE val_2 = something))
Posted by: Guest on August-26-2021

Code answers related to "how to insert all values from one table into another table that is the same in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language