Answers for "sql select values from one table and insert into another"

SQL
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 "sql select values from one table and insert into another"

Code answers related to "SQL"

Browse Popular Code Answers by Language