前端之家收集整理的这篇文章主要介绍了
postgresql:数据库导入导出,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- 通过我的电脑-》属性-》高级-》环境变量将postgre加入到系统变量中,否则你就通过cmd进入到postgre所在bin目录下,再进行下一步操作
- pg_dump -U postgres starxxxx > starxxxx.sql命令,把数据库导出到一个sql文件中
- psql -U postgres starxxxx < starxxxx.sql命令,把sql文件导入到数据库中
原文链接:https://www.f2er.com/postgresql/195263.html