postgres 数据导入导出

# 导出表结构
pg_dump  -U postgres -s helloworld > hello.sql 


# 导出表数据
pg_dump  -U postgres  helloworld > hello.sql 
原文地址:https://www.cnblogs.com/freefei/p/11911703.html