postgresql怎么导入表[mongodb教程]
有时需要把postgresql中的某个表先导出成sql文件,再导入到另一个postgresql数据库中。整个导入导出操作需要把命令行切换到
postgresql安装路径中的bin上,然后分别使用pg_dump命令和psql命令进行导出和导出。
导出命令为:
pg_dump -U postgres(用户名) (-t 表名) 数据库名(缺省时同用户名) > c:fulldb.sql 1
一个样例为:
pg_dump -U postgres -t worldcity postgres >c:worldcity.sql;
导入命令为:
psql -U postgres(用户名) -d 数据库名(缺省时同用户名) < C:fulldb.sql
一个样例为:
psql -U postgres -d postgres <c:worldcity.sql
更多技术请关注云海天Python教程。
以上是 postgresql怎么导入表[mongodb教程] 的全部内容, 来源链接: utcz.com/z/526157.html