我需要将两个数据库(
Database1和
Database2)合并到Postgresql中的公共数据库.
数据库1
表格1
Id – 值(Id是主键)
1 – a
2 – aa
3 – aaa
4 – aaaa
DATABASE2
表格1
Id值(Id是主键)
2 – bb
5 – bbbbb
我希望我的输出为
OutPutDatabase
表格1
Id值(Id是主键)
1 – a
2 – bb
3 – aaa
4 – aaaa
5 – bbbbb
我怎样才能做到这一点?
不是我的想法,而是我过去读过的.
原文链接:https://www.f2er.com/postgresql/192113.htmlThe source: Move table to new database
pg_dump -d db1 -t table1 |psql db2 then psql and do insert into table2 (select * from table1);