-U表示用户
-h表示主机
-p表示端口号
-t表示表名
-f表示备份后的sql文件的名字
-d表示要恢复数据库名称
1.备份单表操作
pg_dump -U postgres -h localhost -p 5432 -t staff -f staff.sql yjl(表示数据库名称)
2.恢复数据操作
psql -U postgres -h localhost -p 5432 -d product -f /home/yjl/staff.sql
-U表示用户
-h表示主机
-p表示端口号
-t表示表名
-f表示备份后的sql文件的名字
-d表示要恢复数据库名称
1.备份单表操作
pg_dump -U postgres -h localhost -p 5432 -t staff -f staff.sql yjl(表示数据库名称)
2.恢复数据操作
psql -U postgres -h localhost -p 5432 -d product -f /home/yjl/staff.sql