postgres数据库导出导入命令 发表评论 279 views 全栈能手-琪睿科技python全栈,专注python技术,python教程,python资源 › 开发技术 › iSQL › postgres数据库导出导入命令 导出文件 pg_dump -U postgres msgdb > D:/msgdb.sql 导入命令 psql -d msgdb -U postgres < D:/msgdb.sql