pg_dump -U postgres -t xxx.yyyy表 -a --inserts -f "d:\111.sql" -h 127.0.0.1 库名
-U 指定用户名 -t 指定表名,不指定就是整个库 -a 只要数据,不要建表语句 -h 主机地址 -f 指定输出文件
--column-inserts 每个insert语句都把列写出来,比如INSERT INTO xxxx(a,b) values(1,2);
--inserts 每个insert语句不写列,比如INSERT INTO xxxx values(1,2);
官方文档:https://www.postgresql.org/docs/current/app-pgdump.html
|