摘要:
linux下postgres的基本数据库操作 步骤: 1.进入数据库 su - postgres ,psql -p5432 2.创建数据库 create database dbname; 3.列出数据库(验证是否成功) \l 4.选择数据库 \c dbname 5.创建表 create table 阅读全文
摘要:
windows下postgresql数据库备份和还原 1、通过cmd进入数据库的bin目录 cd C:\Program Files\PostgreSQL\9.6\bin 2、执行pg_dump备份命令,localhost 或者IP pg_dump -h host -p port -U usernam 阅读全文