Answers for "create a table and populate it postgres"

SQL
0

postgres populate table from another table

INSERT INTO TABLE1 (id, col_1, col_2, col_3)
SELECT id, 'data1', 'data2', 'data3'
FROM TABLE2
WHERE col_a = 'something';
Posted by: Guest on September-29-2021

Code answers related to "create a table and populate it postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language