一、pg_dump导出数据
1.导出单个表
[root@bugtracking ~]# /opt/PostgreSQL/10/bin/pg_dump
-U postgres -t risk_factor_attribute -f /opt/test_20201224_1.sql pdata
2.Insert语句导出单个表
[root@bugtracking ~]# /opt/PostgreSQL/10/bin/pg_dump
-U postgres -t risk_factor_attribute --inserts -f /opt/test_20201224_1.sql pdata
3.Insert语句导出多个表
写多个-t即可导出多个表
[root@bugtracking ~]# /opt/PostgreSQL/10/bin/pg_dum