Answers for "copy values from one table to another postgres"

SQL
1

postgres copy table from one schema to another

create table schema2.the_table (like schema1.the_table including all);
insert into schema2.the_table
select * 
from schema1.the_table;
Posted by: Guest on June-15-2020
0

copy value from one column to another postgres

UPDATE table SET columnB = columnA;
Posted by: Guest on January-26-2021

Code answers related to "copy values from one table to another postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language