PostgreSQL/pgAdmin 数据库表的导出与导入
首先,打开终端,进入postgreSQL的安装路径的bin目录下;
例如:cd D:\software\PostgreSQL\11\bin
导出命令
pg_dump -h 地址 -p 端口 -U 用户名 -t 表名 -f 导出的路径 数据库名
例如:pg_dump -h localhost -p 5433 -U postgres -t user_info -f E:\micn.sql dbName
导入命令
psql -d 数据库名 -h 地址 -p 端口 -U 用户名 -f sql文件所在路径
例如:psql -d nextdb -h localhost -p 5432 -U postgres -f E:\micn.sql
-h:地址
-p:端口
-U:用户名
-t:表名
-f:路径
-d:数据库名
数据库导入时,数据库要先建好喔!!