pg_dump命令可以导出数据库中的表结构。
-s 选项用来只导出表结构,而不会导出表中的数据
-t 选项用来指定要导出的数据库表
pg_dump -s -t tlb exampledb > /tmp/tlb
exampledb是数据库,tlb是exampledb中的表,/tmp/tlb是定向到的文件.
pg_dump -h host -p port -U username -s -t tablename dbname > struct.sql
原文链接:https://www.f2er.com/postgresql/195099.html